0
0
Fork 0

Fix “uninitialized constant HttpLog” errors in tootctl (#32796)

This commit is contained in:
Claire 2024-11-07 10:57:42 +01:00 committed by GitHub
parent 8f4af29a73
commit befb44a08c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View file

@ -596,7 +596,7 @@ def disable_log_stdout!
Rails.logger = dev_null
ActiveRecord::Base.logger = dev_null
HttpLog.configuration.logger = dev_null
HttpLog.configuration.logger = dev_null if defined?(HttpLog)
Paperclip.options[:log] = false
end