diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/environments/production.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/config/environments/production.rb b/config/environments/production.rb index 65c0e3c..e39ab27 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -1,3 +1,5 @@ +require 'syslog/logger' + BetaWebApp::Application.configure do # Settings specified here will take precedence over those in config/application.rb @@ -37,7 +39,7 @@ BetaWebApp::Application.configure do # config.log_tags = [ :subdomain, :uuid ] # Use a different logger for distributed setups - # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new) + config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new('hmno')) # Use a different cache store in production # config.cache_store = :mem_cache_store |