# HG changeset patch # User Christian Hammond # Date 1068947759 0 # Node ID 7398a8d6862d17e5ee0f58e86a2a47025139d56c # Parent 5fbc055c15c72eff4110e3e0ec546683c106a00e [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 diff -r 5fbc055c15c7 -r 7398a8d6862d src/debug.c --- 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