summaryrefslogtreecommitdiff
path: root/config/initializers/grpc.rb
diff options
context:
space:
mode:
Diffstat (limited to 'config/initializers/grpc.rb')
-rw-r--r--config/initializers/grpc.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/config/initializers/grpc.rb b/config/initializers/grpc.rb
new file mode 100644
index 00000000000..b96962fe7db
--- /dev/null
+++ b/config/initializers/grpc.rb
@@ -0,0 +1,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