# HG changeset patch # User Matthew Wild # Date 1275656139 -3600 # Node ID 46f5ed897beb6db6fcf53eca0cbcf91698e5b776 # Parent b932dde3bca5bb4fbce2dd71c940ab399932817f mod_saslauth: Fix log level diff -r b932dde3bca5 -r 46f5ed897beb plugins/mod_saslauth.lua --- 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"});