From 5ca2c8b8ac6b54c92bcc2525358433d486bba10c Mon Sep 17 00:00:00 2001 From: Alan Guo Xiang Tan Date: Mon, 8 Jul 2024 08:42:58 +0800 Subject: [PATCH] DEV: Remove noise from `Rails::Rack::Logger` after Rails 7.1 upgrade (#27731) This commit monkey patches `Rails::Rack::Logger` to not log reqeust information like `Started GET "/service-worker.js" for 127.0.0.1 at 2024-07-05 15:28:12 +0800` when lograge is enabled. This was previously excluded by a monkey patch in the `lograge` gem but that monkey patch has since broke and the gem is unmaintained. --- config/initializers/101-lograge.rb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config/initializers/101-lograge.rb b/config/initializers/101-lograge.rb index 5eaedb5b207..c42d9cb3c8a 100644 --- a/config/initializers/101-lograge.rb +++ b/config/initializers/101-lograge.rb @@ -13,6 +13,11 @@ Rails.application.config.to_prepare do Rails.application.configure do config.lograge.enabled = true + # Monkey patch Rails::Rack::Logger#logger to silence its logs. + # The `lograge` gem is supposed to do this but it broke after we upgraded to Rails 7.1. + # This patch is a temporary workaround until we find a proper fix. + Rails::Rack::Logger.prepend(Module.new { def logger = (@logger ||= Logger.new(IO::NULL)) }) + Lograge.ignore( lambda do |event| # this is our hijack magic status,