diff options
author | Umut Tezduyar Lindskog <umut.tezduyar@axis.com> | 2015-02-20 10:53:28 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-03-01 12:42:16 +0100 |
commit | 03afec3c9aa849ba13161c253b129b834298fd40 (patch) | |
tree | 1933852508db29e002c187eeb02db314844d45a1 /src/core/manager.c | |
parent | ba89821c104d959082aad6f3f0e05a8afd575023 (diff) |
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.
Diffstat (limited to 'src/core/manager.c')
-rw-r--r-- | src/core/manager.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/manager.c b/src/core/manager.c index 7966b387fc..7a6d5190e7 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; } |