From 5f1ac00a8c66559b292fc4efe5361ace2fd55fe1 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Mon, 26 Oct 2015 12:01:18 -0400 Subject: [PATCH] express: Comment out debugging messages for user nick changes Signed-off-by: Chris Michael --- src/bin/callbacks.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/bin/callbacks.c b/src/bin/callbacks.c index b9d00c9..8d4a828 100644 --- a/src/bin/callbacks.c +++ b/src/bin/callbacks.c @@ -367,7 +367,7 @@ _callback_user_private(Express_Network *net, const char *event EINA_UNUSED, cons } void -_callback_user_nick(Express_Network *net EINA_UNUSED, const char *event EINA_UNUSED, const char *source, const char **params, unsigned int count, void *data EINA_UNUSED) +_callback_user_nick(Express_Network *net EINA_UNUSED, const char *event EINA_UNUSED, const char *source, const char **params, unsigned int count EINA_UNUSED, void *data EINA_UNUSED) { Eina_List *channels, *l; Channel *chl; @@ -380,13 +380,13 @@ _callback_user_nick(Express_Network *net EINA_UNUSED, const char *event EINA_UNU else eina_strlcpy(user, params[0], strlen(params[0]) + 1); - DBG("User Changed Nick %s", user); - DBG("\tCount: %d", count); - DBG("\tUser: %s", source); - DBG("\tMessage:"); - DBG("\t%s", params[1]); - DBG("\t%s", params[2]); - DBG("\t%s", params[3]); + /* DBG("User Changed Nick %s", user); */ + /* DBG("\tCount: %d", count); */ + /* DBG("\tUser: %s", source); */ + /* DBG("\tMessage:"); */ + /* DBG("\t%s", params[1]); */ + /* DBG("\t%s", params[2]); */ + /* DBG("\t%s", params[3]); */ snprintf(buff, sizeof(buff), "%s is now known as %s\r\n", source, user);