Skip to content

Instantly share code, notes, and snippets.

@sgonyea
Created June 20, 2012 01:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sgonyea/2957497 to your computer and use it in GitHub Desktop.
Save sgonyea/2957497 to your computer and use it in GitHub Desktop.
Padrino::Logger::Config[:production][:log_level] = :info
Padrino::Logger::Config[:production][:stream] = :to_file
Padrino::Logger::Config[:production][:format_datetime] = " [%Y-%m-%d %H:%M:%S] "
Padrino::Logger::Config[:development][:stream] = :to_file
Padrino::Logger::Config[:development][:format_datetime] = " [%Y-%m-%d %H:%M:%S] "
Padrino::Logger::Config[:uat] = Padrino::Logger::Config[:production]
Padrino::Logger::Config[:staging] = Padrino::Logger::Config[:production]
Padrino::Logger::Config[:qa] = Padrino::Logger::Config[:production]
Padrino::Logger::Config[:test] = Padrino::Logger::Config[:production]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment