From c9729d66d662889edc8e891dbbc1e0d5c0c0e3bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonne=20Ha=C3=9F?= <me@jhass.eu> Date: Mon, 2 Mar 2015 01:34:50 +0100 Subject: [PATCH] Explicitly set log level for production environment --- config/environments/production.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/environments/production.rb b/config/environments/production.rb index 288f2fb320..3adcc72d5e 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -34,8 +34,8 @@ Diaspora::Application.configure do # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies. # config.force_ssl = true - # See everything in the log (default is :info) - # config.log_level = :debug + # Log level + config.log_level = :info # Prepend all log lines with the following tags # config.log_tags = [ :subdomain, :uuid ] -- GitLab