diff options
author | Azul <azul@leap.se> | 2013-10-10 09:52:16 +0200 |
---|---|---|
committer | Azul <azul@leap.se> | 2013-10-10 09:52:16 +0200 |
commit | b676e6e6f5367d1be540af817062a77ee3fe7f00 (patch) | |
tree | 107c50e838d3fe2feb7da932869a9aabc62ce46b /config/environments | |
parent | b60a75d8cbe25ac47bb037e9e54a7cf4e2ba4e1f (diff) | |
parent | eaedf19e2e54ccb9933caa8dc21df13e48609b18 (diff) |
Merge remote-tracking branch 'leap/develop'
Diffstat (limited to 'config/environments')
-rw-r--r-- | config/environments/production.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/config/environments/production.rb b/config/environments/production.rb index 32b4558..7acca75 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -33,11 +33,11 @@ LeapWeb::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 = ActiveSupport::TaggedLogging.new(SyslogLogger.new) + # Use syslog if no file has been specified + if APP_CONFIG[:logfile].blank? + require 'syslog/logger' + config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new('webapp')) + end # Use a different cache store in production # config.cache_store = :mem_cache_store |