util.sasl_cyrus: Log the textual representation of unknown Cyrus SASL errors, not just the error code.

Thu, 03 Jun 2010 18:09:02 +0500

author
Waqas Hussain <waqas20@gmail.com>
date
Thu, 03 Jun 2010 18:09:02 +0500
changeset 3170
a7f1329c5e3c
parent 3169
070424f77629
child 3171
f77759710324

util.sasl_cyrus: Log the textual representation of unknown Cyrus SASL errors, not just the error code.

util/sasl_cyrus.lua file | annotate | diff | comparison | revisions
--- a/util/sasl_cyrus.lua	Thu Jun 03 18:01:05 2010 +0500
+++ b/util/sasl_cyrus.lua	Thu Jun 03 18:09:02 2010 +0500
@@ -127,7 +127,7 @@
 	elseif (err == -13) then -- SASL_BADAUTH
 	   return "failure", "not-authorized", cyrussasl.get_message( self.cyrus )
 	else
-	   log("debug", "Got SASL error condition %d", err)
+	   log("debug", "Got SASL error condition %d: %s", err, cyrussasl.get_message( self.cyrus ))
 	   return "failure", "undefined-condition", cyrussasl.get_message( self.cyrus )
 	end
 end

mercurial