lowering verbosity on reporting tool/data detection

This commit is contained in:
Martin A. Brown 2016-03-04 07:58:03 -08:00
parent bba998b7b9
commit 92e7c8bc89
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ class BaseDoctype(object):
classname = self.__class__.__name__
for tool, validator in self.required.items():
thing = getattr(self.config, tool, None)
logger.info("%s, tool = %s, thing = %s", classname, tool, thing)
logger.debug("%s, tool = %s, thing = %s", classname, tool, thing)
if thing is None:
logger.error("%s missing required tool %s, skipping...",
classname, tool)