Created
December 13, 2016 22:53
-
-
Save kml/9398f11ca3b7b3a0d55bd97b1aa426bd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# encoding: utf-8 | |
require "active_record/log_subscriber" | |
require "logger" | |
module ActiveRecord | |
class LogSubscriber | |
NULL_LOGGER = ::Logger.new(nil) | |
def logger | |
return NULL_LOGGER if Rails.env.production? | |
ActiveRecord::Base.logger | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment