Skip to content

Instantly share code, notes, and snippets.

@jamiew
Created March 28, 2012 15:25
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save jamiew/2227268 to your computer and use it in GitHub Desktop.
Save jamiew/2227268 to your computer and use it in GitHub Desktop.
Fix Heroku cedar app logging with Rails 3.1 and Unicorn
# config/environments/production.rb
# We're on Heroku, just output straight to STDOUT
# This is required because we're using Unicorn: https://github.com/ryanb/cancan/issues/511#issuecomment-3643266
config.logger = Logger.new(STDOUT)
config.logger.level = Logger.const_get(ENV['LOG_LEVEL'] ? ENV['LOG_LEVEL'].upcase : 'INFO')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment