From cfa2883d4729197c501a10d06c7c3c28ebfc6909 Mon Sep 17 00:00:00 2001 From: Sam Lang Date: Wed, 14 Nov 2012 10:45:10 -0600 Subject: [PATCH] pexec: Logging each command isn't useful Signed-off-by: Sam Lang --- teuthology/task/pexec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/task/pexec.py b/teuthology/task/pexec.py index 45c6c2fe0bec0..38a05eb0a63e9 100644 --- a/teuthology/task/pexec.py +++ b/teuthology/task/pexec.py @@ -1,6 +1,7 @@ import contextlib import logging import os +from datetime import datetime from teuthology import misc as teuthology from teuthology.parallel import parallel @@ -20,7 +21,6 @@ def _exec_role(remote, role, sudo, ls): r.stdin.writelines(['cd /tmp/cephtest/mnt.{cid}\n'.format(cid=cid)]) r.stdin.flush() for l in ls: - log.info('[%s] %s', remote.name, l) r.stdin.writelines([l, '\n']) r.stdin.flush() r.stdin.writelines(['\n']) -- 2.39.5