diff options
Diffstat (limited to 'railties/guides/code/getting_started')
| -rw-r--r-- | railties/guides/code/getting_started/config/environments/production.rb | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/railties/guides/code/getting_started/config/environments/production.rb b/railties/guides/code/getting_started/config/environments/production.rb index 6ab63d30a6..dee8acfdfe 100644 --- a/railties/guides/code/getting_started/config/environments/production.rb +++ b/railties/guides/code/getting_started/config/environments/production.rb @@ -33,8 +33,11 @@ Blog::Application.configure do    # See everything in the log (default is :info)    # config.log_level = :debug +  # Prepend all log lines with the following tags +  # config.log_tags = [ :subdomain, :uuid ] +    # Use a different logger for distributed setups -  # config.logger = SyslogLogger.new +  # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)    # Use a different cache store in production    # config.cache_store = :mem_cache_store | 
