Software /
code /
prosody
Changeset
3178:46f5ed897beb
mod_saslauth: Fix log level
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Fri, 04 Jun 2010 13:55:39 +0100 |
parents | 3177:b932dde3bca5 |
children | 3179:99c5288a26e4 |
files | plugins/mod_saslauth.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_saslauth.lua Fri Jun 04 13:54:15 2010 +0100 +++ b/plugins/mod_saslauth.lua Fri Jun 04 13:55:39 2010 +0100 @@ -200,7 +200,7 @@ 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"});