* removed a spurious trace msg
authorArt Cancro <ajc@citadel.org>
Mon, 2 Nov 2009 03:41:19 +0000 (03:41 +0000)
committerArt Cancro <ajc@citadel.org>
Mon, 2 Nov 2009 03:41:19 +0000 (03:41 +0000)
citadel/modules/imap/serv_imap.c

index e7e9ad901f0c00c5b5d05597464bd2f92829cb99..3efe4a4e494f088e0147e3dbe997dcb1a79af6d0 100644 (file)
@@ -1660,7 +1660,6 @@ void imap_command_loop(void)
 
        gettimeofday(&tv2, NULL);
        total_time = (tv2.tv_usec + (tv2.tv_sec * 1000000)) - (tv1.tv_usec + (tv1.tv_sec * 1000000));
-       CtdlLogPrintf(CTDL_INFO, "IMAP: %s\n", cmdbuf); // FIXME FIXME FIXME REMOVE THIS NOW
        CtdlLogPrintf(CTDL_DEBUG, "IMAP command completed in %ld.%ld seconds\n",
                (total_time / 1000000),
                (total_time % 1000000)