From 87b356059633fcb69b18ec8d642cdffe53f53dbf Mon Sep 17 00:00:00 2001 From: Ferry Boender Date: Mon, 13 Nov 2017 22:37:22 +0100 Subject: [PATCH] Demote some logging from warning to info. --- src/ansiblecmdb/ansible.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ansiblecmdb/ansible.py b/src/ansiblecmdb/ansible.py index 53f67b8..b3c7994 100644 --- a/src/ansiblecmdb/ansible.py +++ b/src/ansiblecmdb/ansible.py @@ -147,7 +147,7 @@ def _parse_hostvar_dir(self, inventory_path): self.log.debug("Parsing host vars (dir): {0}".format(path)) if not os.path.exists(path): - self.log.warning("No such dir {0}".format(path)) + self.log.info("No such dir {0}".format(path)) return for entry in os.listdir(path): @@ -208,7 +208,7 @@ def _parse_groupvar_dir(self, inventory_path): self.log.debug("Parsing group vars (dir): {0}".format(path)) if not os.path.exists(path): - self.log.warning("No such dir {0}".format(path)) + self.log.info("No such dir {0}".format(path)) return for (dirpath, dirnames, filenames) in os.walk(path):