From a4ed41ae829eaf2e320e727a47cdf21912381c3c Mon Sep 17 00:00:00 2001 From: Thomas Jackson Date: Tue, 16 Jun 2015 18:34:15 -0700 Subject: [PATCH] Move AES command logging to trace This log message isn't very useful-- and for large installs this accounts for 94% of our logs --- salt/master.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/salt/master.py b/salt/master.py index 90a487a2ab..b35c62cc84 100644 --- a/salt/master.py +++ b/salt/master.py @@ -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)