From bdecc31bac115bfcda0d4e74bcb8fc9f2ba4648a Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Wed, 17 Jun 2009 21:12:02 +0000 Subject: [PATCH] * more temporary logging messages --- webcit/auth.c | 1 + webcit/roomops.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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); -- 2.30.2