diff options
author | Valery Sizov <vsv2711@gmail.com> | 2015-12-03 10:53:58 +0200 |
---|---|---|
committer | Valery Sizov <vsv2711@gmail.com> | 2015-12-03 10:53:58 +0200 |
commit | f21bbd4444f9466d0dc622b0de286deace642598 (patch) | |
tree | b0ea2b631c0cf6045b3e4bfd9cafe7a9162044c9 /config/environments | |
parent | 54b74aa99885b4f35f580bbb2cd923a381562c39 (diff) | |
download | gitlab-ce-f21bbd4444f9466d0dc622b0de286deace642598.tar.gz |
Rails deprecation warning about log_level
Diffstat (limited to 'config/environments')
-rw-r--r-- | config/environments/production.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/environments/production.rb b/config/environments/production.rb index 317b113e100..909526605a1 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -32,7 +32,7 @@ Rails.application.configure do # config.force_ssl = true # See everything in the log (default is :info) - # config.log_level = :debug + config.log_level = :info # Suppress 'Rendered template ...' messages in the log # source: http://stackoverflow.com/a/16369363 |