mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
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:
parent
0d2dc46648
commit
a4ed41ae82
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue