]> code.citadel.org Git - citadel.git/commitdiff
Small change to a log message
authorArt Cancro <ajc@citadel.org>
Tue, 16 May 2006 01:58:33 +0000 (01:58 +0000)
committerArt Cancro <ajc@citadel.org>
Tue, 16 May 2006 01:58:33 +0000 (01:58 +0000)
citadel/imap_misc.c

index f6759da7bf978ee2edb9a0c6b26d9096113bfb6b..ab292c58673bf2d1c26a0f85c0372d4076c4405d 100644 (file)
@@ -156,13 +156,9 @@ int imap_do_copy(char *destination_folder) {
        free(answ_no);
 
        gettimeofday(&tv3, NULL);
-       lprintf(CTDL_DEBUG, "Copying the pointers took %ld microseconds\n",
-               (tv2.tv_usec + (tv2.tv_sec * 1000000))
-               - (tv1.tv_usec + (tv1.tv_sec * 1000000))
-       );
-       lprintf(CTDL_DEBUG, "Setting the flags took %ld microseconds\n",
-               (tv3.tv_usec + (tv3.tv_sec * 1000000))
-               - (tv2.tv_usec + (tv2.tv_sec * 1000000))
+       lprintf(CTDL_DEBUG, "Copying pointers: %ld microseconds / Setting flags: %ld microseconds\n",
+               (tv2.tv_usec + (tv2.tv_sec * 1000000)) - (tv1.tv_usec + (tv1.tv_sec * 1000000)),
+               (tv3.tv_usec + (tv3.tv_sec * 1000000)) - (tv2.tv_usec + (tv2.tv_sec * 1000000))
        );
        return(0);
 }