* more temporary logging messages
authorArt Cancro <ajc@citadel.org>
Wed, 17 Jun 2009 21:12:02 +0000 (21:12 +0000)
committerArt Cancro <ajc@citadel.org>
Wed, 17 Jun 2009 21:12:02 +0000 (21:12 +0000)
webcit/auth.c
webcit/roomops.c

index 2f023a5ecb31a7464b25d60bd29e21139d178fab..d74f1ce6232c1c2d70d3d940244a6f764e832b82 100644 (file)
@@ -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;
 
index 81f7de206ea7438ee0e51008d617aedd8c9ac8f7..546f5a04f05e5d8513fc736046e38d8ff5e82872 100644 (file)
@@ -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);