Welcome to mirror list, hosted at ThFree Co, Russian Federation.

grpc.rb « initializers « config - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b96962fe7db0955dcd9a64c5e26a10b4525b100c (plain)
1
2
3
4
5
6
7
8
9
10
11
require 'logger'

GRPC_LOGGER = Logger.new(Rails.root.join('log/grpc.log'))
GRPC_LOGGER.level = ENV['GRPC_LOG_LEVEL'].presence || 'WARN'
GRPC_LOGGER.progname = 'GRPC'

module GRPC
  def self.logger
    GRPC_LOGGER
  end
end