Make clear commands trace level logging

This commit is contained in:
Thomas Jackson 2015-07-09 19:07:13 -07:00
parent 9b6646d578
commit 60fc770ba2

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)