diff src/debug.c @ 7525:7398a8d6862d

[gaim-migrate @ 8138] Printing to the console if no debug ops are set will cause problems. A different method should be thought out. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sun, 16 Nov 2003 01:55:59 +0000
parents f25119847c5b
children fa6395637e2c
line wrap: on
line diff
--- a/src/debug.c	Sun Nov 16 01:54:44 2003 +0000
+++ b/src/debug.c	Sun Nov 16 01:55:59 2003 +0000
@@ -40,12 +40,6 @@
 
 	if (ops != NULL && ops->print != NULL)
 		ops->print(level, category, format, args);
-        else {
-                /* fallback for pre ops init period */
-                char *str = g_strdup_vprintf(format, args);
-                printf("%s%s%s", category?category:"", category?": ":"",str);
-                g_free(str);
-        }
 }
 
 void