Demote log level of unhelpful info log (#194).
This commit is contained in:
parent
da459d95b8
commit
be7887c071
1 changed files with 1 additions and 1 deletions
|
@ -419,7 +419,7 @@ def collect_configuration_run_summary_logs(config_filenames, args):
|
||||||
# Parse and load each configuration file.
|
# Parse and load each configuration file.
|
||||||
for config_filename in config_filenames:
|
for config_filename in config_filenames:
|
||||||
try:
|
try:
|
||||||
logger.info('{}: Parsing configuration file'.format(config_filename))
|
logger.debug('{}: Parsing configuration file'.format(config_filename))
|
||||||
configs[config_filename] = validate.parse_configuration(
|
configs[config_filename] = validate.parse_configuration(
|
||||||
config_filename, validate.schema_filename()
|
config_filename, validate.schema_filename()
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue