minor change to log msgs
authorArt Cancro <ajc@citadel.org>
Wed, 19 Oct 2005 03:17:49 +0000 (03:17 +0000)
committerArt Cancro <ajc@citadel.org>
Wed, 19 Oct 2005 03:17:49 +0000 (03:17 +0000)
citadel/serv_fulltext.c

index 0d5da3e672a679b6b37188106ef82a33f9f61c80..50ee1e02fd83be45ebef7f66f1a298fcc7d47be7 100644 (file)
@@ -79,7 +79,8 @@ void ft_flush_cache(void) {
 
        for (i=0; i<65536; ++i) {
                if ((time(NULL) - last_update) >= 10) {
-                       lprintf(5, "Flushing index cache to disk (%d%% complete)\n",
+                       lprintf(CTDL_INFO,
+                               "Flushing index cache to disk (%d%% complete)\n",
                                (i * 100 / 65536)
                        );
                        last_update = time(NULL);
@@ -92,7 +93,7 @@ void ft_flush_cache(void) {
                        ftc_msgs[i] = NULL;
                }
        }
-       lprintf(5, "Cache flush has been completed\n");
+       lprintf(CTDL_INFO, "Flushed index cache to disk (100%% complete)\n");
 }