ES6: More components moved over.

This commit is contained in:
Robin Ward
2014-05-30 12:16:23 -04:00
parent 941b5f919f
commit 1af2ff6201
9 changed files with 25 additions and 18 deletions

View File

@ -18,7 +18,8 @@ class SilenceLogger < Rails::Rack::Logger
if env[HTTP_X_SILENCE_LOGGER] ||
@opts[:silenced].include?(path_info) ||
path_info.start_with?('/logs') ||
path_info.start_with?('/user_avatar')
path_info.start_with?('/user_avatar') ||
path_info.start_with?('/letter_avatar')
Rails.logger.level = Logger::WARN
@app.call(env)
else