[systemd-commits] src/core

Lennart Poettering lennart at kemper.freedesktop.org
Sun Mar 1 03:42:23 PST 2015


 src/core/manager.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 03afec3c9aa849ba13161c253b129b834298fd40
Author: Umut Tezduyar Lindskog <umut.tezduyar at axis.com>
Date:   Fri Feb 20 10:53:28 2015 +0100

    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 7966b38..7a6d519 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;
                 }
 



More information about the systemd-commits mailing list