From 6dd4774f0a32ddcf178ba4c83ceffcf9a4f5af62 Mon Sep 17 00:00:00 2001 From: Tommi Virtanen Date: Tue, 24 May 2011 13:01:46 -0700 Subject: [PATCH] Log debug info of commands actually executed. --- orchestra/run.py | 1 + 1 file changed, 1 insertion(+) diff --git a/orchestra/run.py b/orchestra/run.py index a7fdfd5189575..da740957c01dc 100644 --- a/orchestra/run.py +++ b/orchestra/run.py @@ -31,6 +31,7 @@ def execute(client, args): block until the exit status is available. """ cmd = ' '.join(pipes.quote(a) for a in args) + log.debug('Running: {cmd!r}'.format(cmd=cmd)) (in_, out, err) = client.exec_command(cmd) def get_exitstatus(): -- 2.39.5