From 53886b5cf4b760b408e22b00cc03b4dfbfaf73ca Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Wed, 19 Oct 2005 03:17:49 +0000 Subject: [PATCH] minor change to log msgs --- citadel/serv_fulltext.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/citadel/serv_fulltext.c b/citadel/serv_fulltext.c index 0d5da3e67..50ee1e02f 100644 --- a/citadel/serv_fulltext.c +++ b/citadel/serv_fulltext.c @@ -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"); } -- 2.39.2