mirror of
https://github.com/discourse/discourse.git
synced 2025-09-07 12:02:53 +08:00
FIX: Use Discourse.deprecate
instead of Rails.logger.warn
This will significantly reduce the volume of logs when the condition is hit
This commit is contained in:
parent
2843944315
commit
052bf37578
1 changed files with 2 additions and 2 deletions
|
@ -497,9 +497,9 @@ class Plugin::Instance
|
|||
provider.authenticator.enabled?
|
||||
rescue NotImplementedError
|
||||
provider.authenticator.define_singleton_method(:enabled?) do
|
||||
Rails.logger.warn("#{provider.authenticator.class.name} should define an `enabled?` function. Patching for now.")
|
||||
Discourse.deprecate("#{provider.authenticator.class.name} should define an `enabled?` function. Patching for now.")
|
||||
return SiteSetting.send(provider.enabled_setting) if provider.enabled_setting
|
||||
Rails.logger.warn("#{provider.authenticator.class.name} has not defined an enabled_setting. Defaulting to true.")
|
||||
Discourse.deprecate("#{provider.authenticator.class.name} has not defined an enabled_setting. Defaulting to true.")
|
||||
true
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue