# HG changeset patch # User Waqas Hussain # Date 1275569271 -18000 # Node ID b308450740b05d3e001091388fc3dec1e26d53b4 # Parent a31559c52842274740a6a5cc53e0d7b52724af77 util.sasl.scram: Fixed a log level. diff -r a31559c52842 -r b308450740b0 util/sasl/scram.lua --- a/util/sasl/scram.lua Thu Jun 03 18:01:05 2010 +0500 +++ b/util/sasl/scram.lua Thu Jun 03 17:47:51 2010 +0500 @@ -105,7 +105,7 @@ return false, "inappropriate argument types" end if iteration_count < 4096 then - log("warning", "Iteration count < 4096 which is the suggested minimum according to RFC 5802.") + log("warn", "Iteration count < 4096 which is the suggested minimum according to RFC 5802.") end return true, Hi(hmac_sha1, password, salt, iteration_count);