Created
November 19, 2014 21:41
-
-
Save gaffneyc/c0daf1963cc74aa7a52d to your computer and use it in GitHub Desktop.
Disable logging in the test environment
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
Rails.application.configure do | |
# Don't write output to test.log | |
config.logger = ::ActiveSupport::Logger.new("/dev/null") | |
config.logger.formatter = lambda { |*_| nil } | |
config.logger.level = 10 # FATAL is 4 | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment