Don't use verbose run output in SSHHost.run, since it already does
logging of the commands being run.
Risk: Low
Visibility: "ssh:" logs won't be followed up with an immediate
"running:" command anymore.
Signed-off-by: John Admanski <jadmanski@google.com>
git-svn-id: http://test.kernel.org/svn/autotest/trunk@2141 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/server/utils.py b/server/utils.py
index e5e0dd6..9a4b655 100644
--- a/server/utils.py
+++ b/server/utils.py
@@ -23,9 +23,9 @@
############# we need pass throughs for the methods in client/common_lib/utils
def run(command, timeout=None, ignore_status=False,
- stdout_tee=None, stderr_tee=None):
+ stdout_tee=None, stderr_tee=None, verbose=True):
return utils.run(command, timeout, ignore_status,
- stdout_tee, stderr_tee)
+ stdout_tee, stderr_tee, verbose)
def system(command, timeout=None, ignore_status=False):