aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Dickson <SteveD@redhat.com>2010-04-26 14:54:17 +0100
committerDavid Howells <dhowells@redhat.com>2010-04-26 14:54:17 +0100
commit26020b320e2a04c4b58283342657af42274a11fd (patch)
tree310db62e1f28568c6c738b3d1b2ac48f8c329f23
parent7db6d258f9e7fa10b054b349418fa264968f18c9 (diff)
downloadcachefilesd-26020b320e2a04c4b58283342657af42274a11fd.tar.gz
Tone down cachefiled's system log verbosity
There is no need to log every time the cull table is refilled. Signed-off-by: Steve Dickson <steved@redhat.com> Signed-off-by: David Howells <dhowells@redhat.com>
-rw-r--r--cachefilesd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cachefilesd.c b/cachefilesd.c
index c89de31..a5ddb28 100644
--- a/cachefilesd.c
+++ b/cachefilesd.c
@@ -627,7 +627,7 @@ static void cachefilesd(void)
if (jumpstart_scan) {
jumpstart_scan = 0;
if (!stop && !scan) {
- notice("Refilling cull table");
+ debug(1, "Refilling cull table");
root.usage++;
scan = &root;
}
@@ -1496,7 +1496,7 @@ static void cull_objects(void)
if (!scan && oldest_build <= culltable_size / 2 + 2) {
decant_cull_table();
- notice("Refilling cull table");
+ debug(1, "Refilling cull table");
root.usage++;
scan = &root;
}