diff options
author | Daniel Mack <github@zonque.org> | 2015-08-21 15:37:44 +0200 |
---|---|---|
committer | Daniel Mack <github@zonque.org> | 2015-08-21 15:37:44 +0200 |
commit | 8621a8b535fee7a713099f818162d57e18d6d191 (patch) | |
tree | 535da17e7795d82984d182447d1e65d34d6462af | |
parent | ef7051360aefca01d20f700ee74ac1baced59879 (diff) | |
parent | 149730fc755fed72a162271cb23af11beb897fdd (diff) |
Merge pull request #1003 from poettering/kmod-log-debug
core: downgrade "Module inserted" message for kmod to DEBUG
-rw-r--r-- | src/core/kmod-setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/kmod-setup.c b/src/core/kmod-setup.c index fc6d2f4acb..2068ffd69b 100644 --- a/src/core/kmod-setup.c +++ b/src/core/kmod-setup.c @@ -112,7 +112,7 @@ int kmod_setup(void) { r = kmod_module_probe_insert_module(mod, KMOD_PROBE_APPLY_BLACKLIST, NULL, NULL, NULL, NULL); if (r == 0) - log_info("Inserted module '%s'", kmod_module_get_name(mod)); + log_debug("Inserted module '%s'", kmod_module_get_name(mod)); else if (r == KMOD_PROBE_APPLY_BLACKLIST) log_info("Module '%s' is blacklisted", kmod_module_get_name(mod)); else { |