express: Comment out debugging messages for user nick changes

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2015-10-26 12:01:18 -04:00
parent 6c7fde0aaa
commit 5f1ac00a8c
1 changed files with 8 additions and 8 deletions

View File

@ -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);