From d814f9904bb9705070dde8458464b8afe6cfbb22 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 11 Jun 2015 12:13:03 +0200 Subject: kmod-setup: when we fail to load a kmod, log the error cause (Also, downgrade message from LOG_ERROR to LOG_WARNING, after all we don't care much and just proceed) --- src/core/kmod-setup.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/core/kmod-setup.c') diff --git a/src/core/kmod-setup.c b/src/core/kmod-setup.c index cf543c81a3..d956f9b190 100644 --- a/src/core/kmod-setup.c +++ b/src/core/kmod-setup.c @@ -118,8 +118,9 @@ int kmod_setup(void) { else if (r == KMOD_PROBE_APPLY_BLACKLIST) log_info("Module '%s' is blacklisted", kmod_module_get_name(mod)); else - log_full((kmod_table[i].warn_if_unavailable || (r < 0 && r != -ENOENT)) ? LOG_ERR : LOG_DEBUG, - "Failed to insert module '%s'", kmod_module_get_name(mod)); + log_full_errno((kmod_table[i].warn_if_unavailable || (r < 0 && r != -ENOENT)) ? LOG_WARNING : LOG_DEBUG, + r, + "Failed to insert module '%s': %m", kmod_module_get_name(mod)); kmod_module_unref(mod); } -- cgit v1.2.3-54-g00ecf