Skip to content

Commit

Permalink
Lower log level for pillar cache (#32655)
Browse files Browse the repository at this point in the history
This shouldn't show up on salt-call runs
  • Loading branch information
Mike Place committed Apr 18, 2016
1 parent a6a4274 commit 5d1e9a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion salt/pillar/__init__.py
Expand Up @@ -49,7 +49,7 @@ def get_pillar(opts, grains, id_, saltenv=None, ext=None, env=None, funcs=None,
'local': Pillar
}.get(opts['file_client'], Pillar)
# If local pillar and we're caching, run through the cache system first
log.info('Determining pillar cache')
log.debug('Determining pillar cache')
if opts['pillar_cache']:
log.info('Compiling pillar from cache')
log.debug('get_pillar using pillar cache with ext: {0}'.format(ext))
Expand Down

0 comments on commit 5d1e9a4

Please sign in to comment.