EXPERIMENTAL: Allow lograge to be selected as the logging library.

This commit is contained in:
Guo Xiang Tan
2017-10-27 17:54:45 +08:00
parent b1ec4e17d9
commit 90d6677d97
4 changed files with 25 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
if (Rails.env.production? && SiteSetting.logging_provider == 'lograge') || ENV["ENABLE_LOGRAGE"]
Rails.application.configure do
config.lograge.enabled = true
config.lograge.custom_options = lambda do |event|
exceptions = %w(controller action format id)
{ params: event.payload[:params].except(*exceptions) }
end
end
end