mirror of
https://github.com/funamitech/mastodon
synced 2024-11-27 22:38:42 +09:00
9 lines
224 B
Ruby
9 lines
224 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
dev_null = Logger.new('/dev/null')
|
||
|
|
||
|
Rails.logger = dev_null
|
||
|
ActiveRecord::Base.logger = dev_null
|
||
|
HttpLog.configuration.logger = dev_null
|
||
|
Paperclip.options[:log] = false
|