summaryrefslogtreecommitdiff
path: root/config/application.rb
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2013-09-24 10:31:04 +0200
committerAzul <azul@leap.se>2013-09-24 10:35:02 +0200
commit9fa07d19ab9ad8dea15b1fcb8b2c739d79a36d8f (patch)
tree71a70d9b7cb68f639bb1ef5c18d5b35c14a9dd95 /config/application.rb
parent19222102cecca04269de379708bbf71e7f32df24 (diff)
fix syslogger, log_tags are called on request
log_tags was causing errors that could not be logged or caught. We don't need them yet anyway. config.log_tags accepts a list of methods that respond to request object. This makes it easy to tag log lines with debug information like subdomain and request id — both very helpful in debugging multi-user production applications. http://guides.rubyonrails.org/configuring.html
Diffstat (limited to 'config/application.rb')
-rw-r--r--config/application.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/application.rb b/config/application.rb
index e8bb2f4..8587ffc 100644
--- a/config/application.rb
+++ b/config/application.rb
@@ -54,7 +54,7 @@ module LeapWeb
# Configure sensitive parameters which will be filtered from the log file.
config.filter_parameters += [:password]
- if APP_CONFIG[:logfile]
+ if APP_CONFIG[:logfile].present?
config.logger = Logger.new(APP_CONFIG[:logfile])
end