diff plugins/autorecon.c @ 10345:2e01c503aa4f

[gaim-migrate @ 11556] Patch 1078151 from Felipe Contreras to fix some more MSN bugs: "User Dislpay messages, and other less used, did not set an slpcall, so the callback that should not be called, was called (in some very special cases)." ... "Here it goes the real real one, as far as I can tell. Cleaning + organizing + documentation + hard bug fix = big patch." -- Felipe Contreras I also fixed drag-and-drop to conversation window file transfers (which I had broken when I fixed some other dnd thing), made the debug output of the autoreconnect plugin more useful, and stopped the message notification plugin notifying you for messages sent by ignored users. committer: Tailor Script <tailor@pidgin.im>
author Stu Tomlinson <stu@nosnilmot.com>
date Sat, 11 Dec 2004 20:01:58 +0000
parents c06c4a697b31
children 3e4ecbdf8d0a
line wrap: on
line diff
--- a/plugins/autorecon.c	Sat Dec 11 00:06:06 2004 +0000
+++ b/plugins/autorecon.c	Sat Dec 11 20:01:58 2004 +0000
@@ -108,14 +108,14 @@
 			&& gaim_prefs_get_bool(OPT_HIDE_CONNECTED)) {
 		/* this is a connected error, and we're hiding those */
 		gaim_debug(GAIM_DEBUG_INFO, "autorecon",
-				"hid disconnect error message\n");
+				"hid disconnect error message (%s)\n", text);
 		return;
 
 	} else if(gc->state == GAIM_CONNECTING
 			&& gaim_prefs_get_bool(OPT_HIDE_CONNECTING)) {
 		/* this is a connecting error, and we're hiding those */
 		gaim_debug(GAIM_DEBUG_INFO, "autorecon",
-			"hid error message while connecting\n");
+			"hid error message while connecting (%s)\n", text);
 		return;
 	}