803fb7
From 0b78cbf29f02adc3cc490bf2b4e9365057ed7d7b Mon Sep 17 00:00:00 2001
803fb7
From: Umut Tezduyar Lindskog <umut.tezduyar@axis.com>
803fb7
Date: Fri, 20 Feb 2015 10:53:28 +0100
803fb7
Subject: [PATCH] core: downgrade unit type not supported message
803fb7
803fb7
Otherwise every daemon reload prints out warnings like:
803fb7
803fb7
systemd[1]: Unit type .busname is not supported on this system.
803fb7
systemd[1]: Unit type .swap is not supported on this system.
803fb7
803fb7
(cherry picked from commit 03afec3c9aa849ba13161c253b129b834298fd40)
803fb7
---
803fb7
 src/core/manager.c | 2 +-
803fb7
 1 file changed, 1 insertion(+), 1 deletion(-)
803fb7
803fb7
diff --git a/src/core/manager.c b/src/core/manager.c
803fb7
index 4775219e4..bc9b7ec62 100644
803fb7
--- a/src/core/manager.c
803fb7
+++ b/src/core/manager.c
803fb7
@@ -961,7 +961,7 @@ int manager_enumerate(Manager *m) {
803fb7
                 int q;
803fb7
 
803fb7
                 if (unit_vtable[c]->supported && !unit_vtable[c]->supported(m)) {
803fb7
-                        log_info("Unit type .%s is not supported on this system.", unit_type_to_string(c));
803fb7
+                        log_debug("Unit type .%s is not supported on this system.", unit_type_to_string(c));
803fb7
                         continue;
803fb7
                 }
803fb7