]> git.ipfire.org Git - thirdparty/ulogd2.git/commitdiff
ulogd: change verbosity of a message
authorEric Leblond <eric@regit.org>
Tue, 19 Mar 2013 23:18:06 +0000 (00:18 +0100)
committerEric Leblond <eric@regit.org>
Tue, 19 Mar 2013 23:20:00 +0000 (00:20 +0100)
The "registering plugin" message is not really useful as the message
is really explicit if a plugin is missing.

src/ulogd.c

index e09ba9e0b97e5191e68a5f25a1ddc532cb7a4ffd..b28d0f858dd66676db901a7ed3cc7412500955cf 100644 (file)
@@ -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);