diff libpurple/protocols/yahoo/util.c @ 27302:377e063ecda5

Convert the yahoo prpl to using the debug convenience functions instead of purple_debug().
author John Bailey <rekkanoryo@rekkanoryo.org>
date Sun, 05 Jul 2009 02:23:43 +0000
parents 01f1929d0936
children ef5f0cde8d74
line wrap: on
line diff
--- a/libpurple/protocols/yahoo/util.c	Sat Jul 04 23:52:03 2009 +0000
+++ b/libpurple/protocols/yahoo/util.c	Sun Jul 05 02:23:43 2009 +0000
@@ -354,7 +354,7 @@
 					else if ((match = (char *) g_hash_table_lookup(ht, tmp->str)))
 						g_string_append(s, match);
 					else {
-						purple_debug(PURPLE_DEBUG_ERROR, "yahoo",
+						purple_debug_error("yahoo",
 							"Unknown ansi code 'ESC[%sm'.\n", tmp->str);
 						g_string_free(tmp, TRUE);
 						break;
@@ -423,7 +423,7 @@
 
 	ret = s->str;
 	g_string_free(s, FALSE);
-	purple_debug(PURPLE_DEBUG_MISC, "yahoo", "yahoo_codes_to_html:  Returning string: '%s'.\n", ret);
+	purple_debug_misc("yahoo", "yahoo_codes_to_html:  Returning string: '%s'.\n", ret);
 	return ret;
 }
 
@@ -822,7 +822,7 @@
 	g_string_free(dest, FALSE);
 
 	esc = g_strescape(ret, NULL);
-	purple_debug(PURPLE_DEBUG_MISC, "yahoo", "yahoo_html_to_codes:  Returning string: '%s'.\n", esc);
+	purple_debug_misc("yahoo", "yahoo_html_to_codes:  Returning string: '%s'.\n", esc);
 	g_free(esc);
 
 	yahoo_htc_queue_cleanup(colors);