# HG changeset patch # User Jeffrey Connelly # Date 1186960613 0 # Node ID 692b128fe74a52e3f4201ddb6c8fd8c212a858f6 # Parent 2115910c57460f9ea4f94f86c1a488e4aec94f7f Conditionally-compile out debugging statements of escaping. diff -r 2115910c5746 -r 692b128fe74a libpurple/protocols/myspace/message.c --- a/libpurple/protocols/myspace/message.c Sun Aug 12 20:22:18 2007 +0000 +++ b/libpurple/protocols/myspace/message.c Sun Aug 12 23:16:53 2007 +0000 @@ -75,8 +75,10 @@ g_string_append_c(gs, msg[i]); } } - + +#ifdef MSIM_DEBUG_ESCAPE purple_debug_info("msim", "msim_escape: msg=%s, ret=%s\n", msg, gs->str); +#endif return gs->str; } @@ -114,7 +116,9 @@ g_string_append_c(gs, replace); } +#ifdef MSIM_DEBUG_ESCAPE purple_debug_info("msim", "msim_unescape: msg=%s, ret=%s\n", msg, gs->str); +#endif return gs->str; }