enable some more debugging for Andy

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2014-12-17 13:09:47 -05:00
parent 3be16072d7
commit dafbb86da9
1 changed files with 11 additions and 11 deletions

View File

@ -22,12 +22,12 @@ _callback_server_motd(Express_Network *net EINA_UNUSED, const char *event EINA_U
{
Channel *chl;
/* DBG("Server Motd"); */
/* DBG("\tServer: %s", source); */
/* DBG("\tCount: %d", count); */
/* DBG("\tUser: %s", params[0]); */
/* DBG("\tMessage:"); */
/* DBG("\t%s", params[1]); */
DBG("Server Motd");
DBG("\tServer: %s", source);
DBG("\tCount: %d", count);
DBG("\tUser: %s", params[0]);
DBG("\tMessage:");
DBG("\t%s", params[1]);
if (!(chl = _window_channel_server_find(source))) return;
_channel_text_append(chl, NULL, params[1]);
@ -54,11 +54,11 @@ _callback_channel_notice(Express_Network *net EINA_UNUSED, const char *event EIN
{
Channel *chl = NULL;
/* DBG("Channel Notice: %s", params[0]); */
/* DBG("\tCount: %d", count); */
/* DBG("\tServer: %s", source); */
/* DBG("\tMessage:"); */
/* DBG("\t%s", params[1]); */
DBG("Channel Notice: %s", params[0]);
DBG("\tCount: %d", count);
DBG("\tServer: %s", source);
DBG("\tMessage:");
DBG("\t%s", params[1]);
if (!strcmp(params[0], "*"))
{