summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Leblond <eric@regit.org>2013-03-20 00:18:06 +0100
committerEric Leblond <eric@regit.org>2013-03-20 00:20:00 +0100
commit47b7c60572163a508cf67e90aca6b61e089a5657 (patch)
treef3b57bf3980baec731ed2d60f277cfa40b29c4f4
parentd39a5e4eb885f04b00f21c11861eab34692e60b7 (diff)
ulogd: change verbosity of a message
The "registering plugin" message is not really useful as the message is really explicit if a plugin is missing.
-rw-r--r--src/ulogd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ulogd.c b/src/ulogd.c
index e09ba9e..b28d0f8 100644
--- a/src/ulogd.c
+++ b/src/ulogd.c
@@ -372,7 +372,7 @@ void ulogd_register_plugin(struct ulogd_plugin *me)
me->name);
exit(EXIT_FAILURE);
}
- ulogd_log(ULOGD_NOTICE, "registering plugin `%s'\n", me->name);
+ ulogd_log(ULOGD_DEBUG, "registering plugin `%s'\n", me->name);
llist_add(&me->list, &ulogd_plugins);
} else {
get_plugin_infos(me);