bump up verbosity of failed excute() to logger.info

This commit is contained in:
Martin A. Brown 2016-03-01 21:38:16 -08:00
parent efa2c9432a
commit d28460aaff
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ class BaseDoctype(object):
if result != 0:
with open(tf.name) as f:
for line in f:
logger.debug("Script: %s", line.rstrip())
logger.info("Script: %s", line.rstrip())
return False
return True