Demote log level of unhelpful info log (#194).

This commit is contained in:
Dan Helfman 2019-06-19 12:01:03 -07:00
parent da459d95b8
commit be7887c071
1 changed files with 1 additions and 1 deletions

View File

@ -419,7 +419,7 @@ def collect_configuration_run_summary_logs(config_filenames, args):
# Parse and load each configuration file.
for config_filename in config_filenames:
try:
logger.info('{}: Parsing configuration file'.format(config_filename))
logger.debug('{}: Parsing configuration file'.format(config_filename))
configs[config_filename] = validate.parse_configuration(
config_filename, validate.schema_filename()
)