Skip to content

Instantly share code, notes, and snippets.

@danreedy
Created February 21, 2014 14:30
Show Gist options
  • Save danreedy/9135273 to your computer and use it in GitHub Desktop.
Save danreedy/9135273 to your computer and use it in GitHub Desktop.
A Chatty Unicorn
# config/environments/development.rb
# {{APP_NAME}}::Application.configure do
# ...
config.logger = Logger.new(STDOUT)
config.logger.level = Logger.const_get(
ENV['LOG_LEVEL'] ? ENV['LOG_LEVEL'].upcase : 'DEBUG'
)
# ...
#end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment