From 5d1e9a478b12569ca08d866ae5d71d1a79a1d00d Mon Sep 17 00:00:00 2001 From: Mike Place Date: Mon, 18 Apr 2016 10:32:44 -0600 Subject: [PATCH] Lower log level for pillar cache (#32655) This shouldn't show up on salt-call runs --- salt/pillar/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/salt/pillar/__init__.py b/salt/pillar/__init__.py index ae70cb96ad36..578b4df89000 100644 --- a/salt/pillar/__init__.py +++ b/salt/pillar/__init__.py @@ -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))