X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/29e364d5856ebd465936c1afadd8c2da2c35b468..82cefb5929ad2d3945da43040279626336e44ee6:/config/application.rb?ds=sidebyside diff --git a/config/application.rb b/config/application.rb index 48317ec2b..142e436c5 100644 --- a/config/application.rb +++ b/config/application.rb @@ -48,5 +48,13 @@ module OpenStreetMap if defined?(MEMCACHE_SERVERS) config.cache_store = :mem_cache_store, MEMCACHE_SERVERS, { :namespace => "rails:cache" } end + + # Use logstash for logging if required + if defined?(LOGSTASH_PATH) + config.logstasher.enabled = true + config.logstasher.suppress_app_log = false + config.logstasher.logger_path = LOGSTASH_PATH + config.logstasher.log_controller_parameters = true + end end end