diff --git a/app/controllers/ping_controller.rb b/app/controllers/ping_controller.rb index 8f5b11857..361adb56c 100644 --- a/app/controllers/ping_controller.rb +++ b/app/controllers/ping_controller.rb @@ -1,10 +1,12 @@ class PingController < ApplicationController def index - if (ActiveRecord::Base.connected?) - render nothing: true, status: 200, content_type: "application/json" - else - render nothing: true, status: 500, content_type: "application/json" + Rails.logger.silence do + if (ActiveRecord::Base.connected?) + render nothing: true, status: 200, content_type: "application/json" + else + render nothing: true, status: 500, content_type: "application/json" + end end end