Move AES command logging to trace

This log message isn't very useful-- and for large installs this accounts for 94% of our logs
This commit is contained in:
Thomas Jackson 2015-06-16 18:34:15 -07:00
parent 0d2dc46648
commit a4ed41ae82

View File

@ -823,7 +823,7 @@ class MWorker(multiprocessing.Process):
if 'cmd' not in data:
log.error('Received malformed command {0}'.format(data))
return {}
log.info('AES payload received with command {0}'.format(data['cmd']))
log.trace('AES payload received with command {0}'.format(data['cmd']))
if data['cmd'].startswith('__'):
return False
return self.aes_funcs.run_func(data['cmd'], data)