Skip to content

Commit

Permalink
Demote some logging from warning to info.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ferry Boender committed Nov 13, 2017
1 parent a0ef40a commit 87b3560
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ansiblecmdb/ansible.py
Expand Up @@ -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):
Expand Down Expand Up @@ -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):
Expand Down

0 comments on commit 87b3560

Please sign in to comment.