diff options
author | Elliott Sales de Andrade <qulogic@pidgin.im> | 2014-11-13 19:03:19 -0500 |
---|---|---|
committer | Elliott Sales de Andrade <qulogic@pidgin.im> | 2014-11-13 19:03:19 -0500 |
commit | f8281cbbb0252ef3fa6bfe2591607785cba73aff (patch) | |
tree | f0850b44bfbcff2fd4de9224864096c5e1a18ccd /libpurple/protocols/msn/msn.c | |
parent | d9532a5e0ba6fc17c2e61353e500fafd2991295c (diff) | |
download | pidgin-f8281cbbb0252ef3fa6bfe2591607785cba73aff.tar.gz |
Tweak debug messages about on/offline MSN messages.
Diffstat (limited to 'libpurple/protocols/msn/msn.c')
-rw-r--r-- | libpurple/protocols/msn/msn.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libpurple/protocols/msn/msn.c b/libpurple/protocols/msn/msn.c index 1269cf2c4d..09ead6b945 100644 --- a/libpurple/protocols/msn/msn.c +++ b/libpurple/protocols/msn/msn.c @@ -1582,7 +1582,6 @@ msn_send_im(PurpleConnection *gc, const char *who, const char *message, g_free(msgformat); g_free(msgtext); - purple_debug_info("msn", "prepare to send online Message\n"); if (g_ascii_strcasecmp(who, username)) { if (flags & PURPLE_MESSAGE_AUTO_RESP) { @@ -1591,7 +1590,7 @@ msn_send_im(PurpleConnection *gc, const char *who, const char *message, if (msn_user_is_yahoo(account, who) || !(msn_user_is_online(account, who) || swboard != NULL)) { /*we send the online and offline Message to Yahoo User via UBM*/ - purple_debug_info("msn", "send to Yahoo User\n"); + purple_debug_info("msn", "send to offline or Yahoo user\n"); msn_notification_send_uum(session, msg); } else { purple_debug_info("msn", "send via switchboard\n"); |