Use g_log instead of g_debug
authorMikael Hallendal <micke@imendio.com>
Sat, 24 Feb 2007 01:47:22 +0100
changeset 224 447f16217278
parent 223 b343ed8b3fea
child 225 bf60cd9af13f
Use g_log instead of g_debug
loudmouth/lm-sasl.c
--- a/loudmouth/lm-sasl.c	Sat Feb 24 01:19:06 2007 +0100
+++ b/loudmouth/lm-sasl.c	Sat Feb 24 01:47:22 2007 +0100
@@ -391,7 +391,10 @@
 
 	rspauth = g_hash_table_lookup (challenge, "rspauth");
 	if (rspauth == NULL) {
-		g_debug ("%s: server sent an invalid reply (no rspauth)", G_STRFUNC);
+		g_log (LM_LOG_DOMAIN, LM_LOG_LEVEL_SSL,
+		       "%s: server sent an invalid reply (no rspauth)\n",
+		       G_STRFUNC);
+
 		if (sasl->handler) {
 			sasl->handler (sasl, sasl->connection, TRUE, "server error");
 		}
@@ -399,7 +402,10 @@
 	}
 
 	if (strcmp(sasl->digest_md5_rspauth, rspauth)) {
-		g_debug ("%s: server sent an invalid reply (rspauth not matching)", G_STRFUNC);
+		g_log (LM_LOG_DOMAIN, LM_LOG_LEVEL_SSL,
+		       "%s: server sent an invalid reply (rspauth not matching)\n", 
+		       G_STRFUNC);
+
 		if (sasl->handler) {
 			sasl->handler (sasl, sasl->connection, TRUE, "server error");
 		}
@@ -414,8 +420,10 @@
 	result = lm_connection_send (sasl->connection, msg, NULL);
 	lm_message_unref (msg);
 
-	if (!result)
+	if (!result) {
+		g_warning ("Failed to send SASL response\n");
 		return FALSE;
+	}
 
 	sasl->state = SASL_AUTH_STATE_DIGEST_MD5_SENT_FINAL_RESPONSE;
 
@@ -423,7 +431,7 @@
 }
 
 static gboolean
-digest_md5_handle_challenge(LmSASL *sasl, LmMessageNode *node)
+digest_md5_handle_challenge (LmSASL *sasl, LmMessageNode *node)
 {
 	const gchar *encoded;
 	gchar *challenge;
@@ -474,7 +482,7 @@
 {
 	LmSASL *sasl;
 	const gchar *ns;
-	
+
 	ns = lm_message_node_get_attribute (message->node, "xmlns");
 	if (!ns || strcmp (ns, XMPP_NS_SASL_AUTH))
 		return LM_HANDLER_RESULT_ALLOW_MORE_HANDLERS;
@@ -483,7 +491,10 @@
 
 	switch (sasl->auth_type) {
 	case AUTH_TYPE_PLAIN:
-		g_debug ("%s: server sent challenge for PLAIN mechanism", G_STRFUNC);
+		g_log (LM_LOG_DOMAIN, LM_LOG_LEVEL_SSL,
+		       "%s: server sent challenge for PLAIN mechanism",
+		       G_STRFUNC);
+
 		if (sasl->handler) {
 			sasl->handler (sasl, sasl->connection, FALSE, "server error");
 		}