Removed some spurious trace messages
authorArt Cancro <ajc@citadel.org>
Tue, 12 Feb 2008 04:24:07 +0000 (04:24 +0000)
committerArt Cancro <ajc@citadel.org>
Tue, 12 Feb 2008 04:24:07 +0000 (04:24 +0000)
webcit/messages.c
webcit/preferences.c

index d55dc2f754e71d33a3ac71028885a92bd61a71ae..49dcbdde1b44c0abf9724eebc128353213fbde0e 100644 (file)
@@ -1083,7 +1083,6 @@ void read_message(long msgnum, int printable_view, char *section) {
         */
        strcpy(mime_content_type, "text/plain");
        while (serv_getln(buf, sizeof buf), (!IsEmptyStr(buf))) {
-               lprintf(9, "GOT: <%s>\n", buf);
                if (!strcmp(buf, "000")) {
                        /* This is not necessarily an error condition.  See bug #226. */
                        goto ENDBODY;
index d39829931b5b596d3f3739cdf3fa7a36ca28f2e5..543c97ae367a6867f8846327b7e24d034bdaf288 100644 (file)
@@ -108,10 +108,8 @@ void save_preferences(void) {
                Hash = WC->hash_prefs;
                PrintHash(Hash);
                HashPos = GetNewHashPos();
-               printf("_______> writing entries\n");
                while (GetNextHashPos(Hash, HashPos, &len, &Key, (void**)&Value)!=0)
                {
-                       printf("__________>%s -> %s \n", Key, Value);
                        serv_printf("%s|%s", Key, Value);
                }
                serv_puts("");