changeset 18911:692b128fe74a

Conditionally-compile out debugging statements of escaping.
author Jeffrey Connelly <jaconnel@calpoly.edu>
date Sun, 12 Aug 2007 23:16:53 +0000
parents 2115910c5746
children 7519560095f7
files libpurple/protocols/myspace/message.c
diffstat 1 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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;
 }