Merge pull request #25308 from jacksontj/2015.5

Make clear commands trace level logging
This commit is contained in:
Justin Findlay 2015-07-10 08:20:06 -06:00
commit 2f0f59b6cb

View file

@ -801,7 +801,7 @@ class MWorker(multiprocessing.Process):
:return: The result of passing the load to a function in ClearFuncs corresponding to
the command specified in the load's 'cmd' key.
'''
log.info('Clear payload received with command {cmd}'.format(**load))
log.trace('Clear payload received with command {cmd}'.format(**load))
if load['cmd'].startswith('__'):
return False
return getattr(self.clear_funcs, load['cmd'])(load)