From: Art Cancro Date: Wed, 17 Jun 2009 21:12:02 +0000 (+0000) Subject: * more temporary logging messages X-Git-Tag: v7.86~1038 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=bdecc31bac115bfcda0d4e74bcb8fc9f2ba4648a * more temporary logging messages --- diff --git a/webcit/auth.c b/webcit/auth.c index 2f023a5ec..d74f1ce62 100644 --- a/webcit/auth.c +++ b/webcit/auth.c @@ -148,6 +148,7 @@ void become_logged_in(const StrBuf *user, const StrBuf *pass, StrBuf *serv_respo Buf = NewStrBuf(); serv_puts("CHEK"); StrBuf_ServGetln(Buf); + lprintf(9, "%s:%d CHEK server reply: %s\n", __FILE__, __LINE__, ChrPtr(Buf)); if (GetServerStatus(Buf, NULL) == 2) { const char *pch; diff --git a/webcit/roomops.c b/webcit/roomops.c index 81f7de206..546f5a04f 100644 --- a/webcit/roomops.c +++ b/webcit/roomops.c @@ -811,7 +811,7 @@ long gotoroom(const StrBuf *gname) /* move to the new room */ serv_printf("GOTO %s", ChrPtr(gname)); StrBuf_ServGetln(Buf); - lprintf(9, "%s:%d server reply: %s\n", __FILE__, __LINE__, ChrPtr(Buf)); + lprintf(9, "%s:%d GOTO server reply: %s\n", __FILE__, __LINE__, ChrPtr(Buf)); if (GetServerStatus(Buf, &err) != 2) { serv_puts("GOTO _BASEROOM_"); StrBuf_ServGetln(Buf);