adjusting logging verbosity

This commit is contained in:
Martin A. Brown 2016-02-26 01:07:09 -08:00
parent 4e76494cce
commit 2b65730f25
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ class BaseDoctype(object):
for dep in order:
method = getattr(self, dep, None)
assert method is not None
logger.debug("%s calling method %s", stem, dep)
logger.info("%s calling method %s", stem, dep)
if not method():
logger.error("%s reported method %s failure, skipping...",
stem, dep)