Skip to content

Commit 87b3560

Browse files
author
Ferry Boender
committed
Demote some logging from warning to info.
1 parent a0ef40a commit 87b3560

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ansiblecmdb/ansible.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def _parse_hostvar_dir(self, inventory_path):
147147

148148
self.log.debug("Parsing host vars (dir): {0}".format(path))
149149
if not os.path.exists(path):
150-
self.log.warning("No such dir {0}".format(path))
150+
self.log.info("No such dir {0}".format(path))
151151
return
152152

153153
for entry in os.listdir(path):
@@ -208,7 +208,7 @@ def _parse_groupvar_dir(self, inventory_path):
208208

209209
self.log.debug("Parsing group vars (dir): {0}".format(path))
210210
if not os.path.exists(path):
211-
self.log.warning("No such dir {0}".format(path))
211+
self.log.info("No such dir {0}".format(path))
212212
return
213213

214214
for (dirpath, dirnames, filenames) in os.walk(path):

0 commit comments

Comments
 (0)