Merge "Only print polling.yaml file contents as DEBUG"

This commit is contained in:
Zuul 2019-01-17 11:52:27 +00:00 committed by Gerrit Code Review
commit ce2ac3dfc5
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ class ConfigManagerBase(object):
__name__, 'pipeline/data/' + cfg_file)
with open(cfg_loc) as fap:
conf = yaml.safe_load(fap)
LOG.info("Config file: %s", conf)
LOG.debug("Config file: %s", conf)
return conf