From b56c267ffbd3a5598dfa1dba5e6a51b38fcaed57 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 26 Mar 2013 03:13:41 +0100 Subject: [PATCH] modules-load: there's really no point in mentioning that a certain modules is already loaded After all, this runs in parallel to udev, so there's quite a chance it already is.... --- src/modules-load/modules-load.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules-load/modules-load.c b/src/modules-load/modules-load.c index 28b53ec7a..9ee260302 100644 --- a/src/modules-load/modules-load.c +++ b/src/modules-load/modules-load.c @@ -148,7 +148,7 @@ static int load_module(struct kmod_ctx *ctx, const char *m) { break; case KMOD_MODULE_LIVE: - log_info("Module '%s' is already loaded", kmod_module_get_name(mod)); + log_debug("Module '%s' is already loaded", kmod_module_get_name(mod)); break; default: -- 2.30.2