diff plugins/raw.c @ 5227:6d1707dc8c3d

[gaim-migrate @ 5597] debug_printf -> gaim_debug committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sat, 26 Apr 2003 17:36:52 +0000
parents fefad67de2c7
children 1f901484599d
line wrap: on
line diff
--- a/plugins/raw.c	Sat Apr 26 15:42:36 2003 +0000
+++ b/plugins/raw.c	Sat Apr 26 17:36:52 2003 +0000
@@ -62,18 +62,18 @@
 				write(*a, &seqno, 2);
 				write(*a, &len, 2);
 				write(*a, txt, ntohs(len));
-				debug_printf("TOC C: %s\n", txt);
+				gaim_debug(GAIM_DEBUG_MISC, "raw", "TOC C: %s\n", txt);
 			}
 			break;
 		case PROTO_MSN:
 			write(*(int *)gc->proto_data, txt, strlen(txt));
 			write(*(int *)gc->proto_data, "\r\n", 2);
-			debug_printf("MSN C: %s\n", txt);
+			gaim_debug(GAIM_DEBUG_MISC, "raw", "MSN C: %s\n", txt);
 			break;
 		case PROTO_IRC:
 			write(*(int *)gc->proto_data, txt, strlen(txt));
 			write(*(int *)gc->proto_data, "\r\n", 2);
-			debug_printf("IRC C: %s\n", txt);
+			gaim_debug(GAIM_DEBUG_MISC, "raw", "IRC C: %s\n", txt);
 			break;
 		case PROTO_JABBER:
 			jab_send_raw(*(jconn *)gc->proto_data, txt);