Make log_level explicit in production.rb template

The 'production' environment name is currently checked for setting up
the default log_level to 'info' but that won't work if the environment
is copied to staging.rb, for instance. Better to have it explicitly set.
This commit is contained in:
Rodrigo Rosenfeld Rosas 2012-04-16 11:17:40 -03:00
parent fd12fe6504
commit 21f6d723f4
1 changed files with 2 additions and 2 deletions

View File

@ -32,8 +32,8 @@
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
# config.force_ssl = true
# See everything in the log (default is :info).
# config.log_level = :debug
# Set to :debug to see everything in the log.
config.log_level = :info
# Prepend all log lines with the following tags.
# config.log_tags = [ :subdomain, :uuid ]