changeset 2840:babeeac8cf9e

[gaim-migrate @ 2853] it's quite possible committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Tue, 04 Dec 2001 04:51:55 +0000
parents c936163f916a
children 182fbac488c0
files src/proxy.c
diffstat 1 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/proxy.c	Mon Dec 03 12:22:46 2001 +0000
+++ b/src/proxy.c	Tue Dec 04 04:51:55 2001 +0000
@@ -77,8 +77,10 @@
 	if (condition & GAIM_WRITE_COND)
 		gaim_cond |= GAIM_INPUT_WRITE;
 
+	/*
 	debug_printf("CLOSURE: callback for %d, fd is %d\n",
 		     closure->result, g_io_channel_unix_get_fd(source));
+	*/
 
 	closure->function(closure->data, g_io_channel_unix_get_fd(source), gaim_cond);
 
@@ -103,7 +105,7 @@
 	closure->result = g_io_add_watch_full(channel, G_PRIORITY_DEFAULT, cond,
 					      gaim_io_invoke, closure, gaim_io_destroy);
 
-	debug_printf("CLOSURE: adding input watcher %d for fd %d\n", closure->result, source);
+	/* debug_printf("CLOSURE: adding input watcher %d for fd %d\n", closure->result, source); */
 
 	g_io_channel_unref(channel);
 	return closure->result;
@@ -111,7 +113,7 @@
 
 void gaim_input_remove(gint tag)
 {
-	debug_printf("CLOSURE: removing input watcher %d\n", tag);
+	/* debug_printf("CLOSURE: removing input watcher %d\n", tag); */
 	if (tag > 0)
 		g_source_remove(tag);
 }