From 3dbec0ae110ecce63cb00a4d7c51ea379e5db72d Mon Sep 17 00:00:00 2001 From: Ahmad Farhat <ahmad.af.farhat@gmail.com> Date: Fri, 16 Jun 2023 10:25:03 -0400 Subject: [PATCH] Filter out health check logs (#5243) --- config/environments/production.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/environments/production.rb b/config/environments/production.rb index 3e116cc8..f3f5a4a0 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -154,7 +154,7 @@ Rails.application.configure do { time: Time.zone.now, host: event.payload[:host] } end - config.lograge.ignore_actions = ['HealthCheckController#all', + config.lograge.ignore_actions = ['HealthChecksController#check', 'ApplicationCable::Connection#connect', 'RoomsChannel#subscribe', 'ApplicationCable::Connection#disconnect', 'RoomsChannel#unsubscribe'] -- GitLab