# HG changeset patch # User Waqas Hussain # Date 1275569271 -18000 # Node ID 6459166ed8f3b9e1456ca269643d470e85bb5c02 # Parent 190827ba45914a17d56ad861f8a23bea0bc7e71c util.sasl.scram: Fixed a log level. diff -r 190827ba4591 -r 6459166ed8f3 util/sasl/scram.lua --- a/util/sasl/scram.lua Thu Jun 03 17:27:49 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);