diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2011-10-19 16:16:44 -0500 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2011-10-19 16:17:06 -0500 |
commit | 1359152345e84b951becf687ab6f26e30a9af3ce (patch) | |
tree | 3b205fee20c482c3fbdd0b0802700343a2c20b0b /railties | |
parent | c83d9a11c00bc13e1f8f0fa0e8fb6185cacd5fc9 (diff) | |
download | rails-1359152345e84b951becf687ab6f26e30a9af3ce.tar.gz rails-1359152345e84b951becf687ab6f26e30a9af3ce.tar.bz2 rails-1359152345e84b951becf687ab6f26e30a9af3ce.zip |
Encourage use of tagged logging even when using a different logger
Diffstat (limited to 'railties')
-rw-r--r-- | railties/guides/code/getting_started/config/environments/production.rb | 2 |
1 files changed, 1 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 4618191d6b..dee8acfdfe 100644 --- a/railties/guides/code/getting_started/config/environments/production.rb +++ b/railties/guides/code/getting_started/config/environments/production.rb @@ -37,7 +37,7 @@ Blog::Application.configure do # 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 |