diff options
author | Matthew Wild <mwild1@gmail.com> | 2010-06-04 13:55:39 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2010-06-04 13:55:39 +0100 |
commit | 396e1061837382d6e15dcb5184491657ffa2e3b8 (patch) | |
tree | a3ede71bcc9bdb32d2eb0370829ddac996f33a90 /plugins/mod_saslauth.lua | |
parent | f2d8d208cfb92e9eda0577e66176b8057cb5d8b5 (diff) | |
download | prosody-396e1061837382d6e15dcb5184491657ffa2e3b8.tar.gz prosody-396e1061837382d6e15dcb5184491657ffa2e3b8.zip |
mod_saslauth: Fix log level
Diffstat (limited to 'plugins/mod_saslauth.lua')
-rw-r--r-- | plugins/mod_saslauth.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_saslauth.lua b/plugins/mod_saslauth.lua index 6499eafe..c16a14da 100644 --- a/plugins/mod_saslauth.lua +++ b/plugins/mod_saslauth.lua @@ -200,7 +200,7 @@ module:hook("stream-features", function(event) elseif usermanager_get_provider(realm).test_password then origin.sasl_handler = new_sasl(realm, testpass_authentication_profile); else - log("warning", "AUTH: Could not load an authentication profile for the given provider."); + log("warn", "AUTH: Could not load an authentication profile for the given provider."); end if not (module:get_option("allow_unencrypted_plain_auth")) and not origin.secure then origin.sasl_handler:forbidden({"PLAIN"}); |