diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-08-21 15:28:01 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-08-21 15:28:01 +0200 |
commit | 149730fc755fed72a162271cb23af11beb897fdd (patch) | |
tree | 535da17e7795d82984d182447d1e65d34d6462af /src | |
parent | ef7051360aefca01d20f700ee74ac1baced59879 (diff) |
core: downgrade "Module inserted" message for kmod to DEBUG
Closes #919.
Diffstat (limited to 'src')
-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 { |