From: Umut Tezduyar Lindskog Date: Fri, 20 Feb 2015 09:53:28 +0000 (+0100) Subject: core: downgrade unit type not supported message X-Git-Tag: v219.0~537 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=03afec3c9aa849ba13161c253b129b834298fd40 core: downgrade unit type not supported message Otherwise every daemon reload prints out warnings like: systemd[1]: Unit type .busname is not supported on this system. systemd[1]: Unit type .swap is not supported on this system. --- diff --git a/src/core/manager.c b/src/core/manager.c index 7966b387f..7a6d5190e 100644 --- a/src/core/manager.c +++ b/src/core/manager.c @@ -953,7 +953,7 @@ int manager_enumerate(Manager *m) { int q; if (unit_vtable[c]->supported && !unit_vtable[c]->supported(m)) { - log_info("Unit type .%s is not supported on this system.", unit_type_to_string(c)); + log_debug("Unit type .%s is not supported on this system.", unit_type_to_string(c)); continue; }