From 95e045d153f3a079e6e3355a8068d6b33bd6747d Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Wed, 11 Apr 2012 20:15:17 -0400 Subject: [PATCH] Remove remote logging as we're going to move this logging to the modules for performance reasons. --- lib/ansible/runner.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/lib/ansible/runner.py b/lib/ansible/runner.py index deea5c98fd..188a00c27e 100755 --- a/lib/ansible/runner.py +++ b/lib/ansible/runner.py @@ -387,11 +387,6 @@ class Runner(object): else: cmd = " ".join([str(x) for x in [remote_module_path, async_jid, async_limit, async_module, argsfile]]) - # log command as the full command not as the path to args file - helps with debugging - msg = '%s: "%s"' % (self.module_name, args) - conn.exec_command('/usr/bin/logger -t ansible -p auth.info "%s"' % msg, None) - - res, err = self._exec_command(conn, cmd, tmp, sudoable=True) client_executed_str = "%s %s" % (module_name_tail, args.strip()) return ( res, err, client_executed_str ) @@ -642,10 +637,6 @@ class Runner(object): def _exec_command(self, conn, cmd, tmp, sudoable=False): ''' execute a command string over SSH, return the output ''' - msg = '%s: %s' % (self.module_name, cmd) - # log remote command execution - conn.exec_command('/usr/bin/logger -t ansible -p auth.info "%s"' % msg, None) - # now run actual command stdin, stdout, stderr = conn.exec_command(cmd, tmp, sudoable=sudoable) if type(stderr) != str: