Skip to content

Instantly share code, notes, and snippets.

@kml
Created December 13, 2016 22:53
Show Gist options
  • Save kml/9398f11ca3b7b3a0d55bd97b1aa426bd to your computer and use it in GitHub Desktop.
Save kml/9398f11ca3b7b3a0d55bd97b1aa426bd to your computer and use it in GitHub Desktop.
# 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