summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Zeuthen <davidz@redhat.com>2010-10-08 17:10:03 -0400
committerDavid Zeuthen <davidz@redhat.com>2010-10-08 17:10:03 -0400
commitca29db41408c438400b008c2735e172c1bdf2cf9 (patch)
treeb39d0e5392752303e5f365da8f3ee081699b1ec3
parent7c8db06df1f23e106288c8466e5d1a88be38562f (diff)
Demote log message from INFO to DEBUG
We don't really want the last two lines of Oct 8 17:08:00 x61 stcd[11538]: stcd 0.1 starting up Oct 8 17:08:00 x61 stcd[11538]: coldplugging items Oct 8 17:08:00 x61 stcd[11538]: done coldplugging items Signed-off-by: David Zeuthen <davidz@redhat.com>
-rw-r--r--stc/stcd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/stc/stcd.c b/stc/stcd.c
index ba6a2b7..d7b26be 100644
--- a/stc/stcd.c
+++ b/stc/stcd.c
@@ -227,7 +227,7 @@ _stc_daemon_init (_StcDaemon *daemon)
daemon);
/* coldplug */
- log_message (LOG_LEVEL_INFO, "coldplugging items");
+ log_message (LOG_LEVEL_DEBUG, "coldplugging items");
items = stc_monitor_get_items (daemon->monitor);
for (l = items; l != NULL; l = l->next)
{
@@ -236,7 +236,7 @@ _stc_daemon_init (_StcDaemon *daemon)
}
g_list_foreach (items, (GFunc) g_object_unref, NULL);
g_list_free (items);
- log_message (LOG_LEVEL_INFO, "done coldplugging items");
+ log_message (LOG_LEVEL_DEBUG, "done coldplugging items");
}
static void