From: Sam Lang Date: Wed, 14 Nov 2012 16:45:10 +0000 (-0600) Subject: pexec: Logging each command isn't useful X-Git-Tag: 1.1.0~2412 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=cfa2883d4729197c501a10d06c7c3c28ebfc6909;p=teuthology.git pexec: Logging each command isn't useful Signed-off-by: Sam Lang --- diff --git a/teuthology/task/pexec.py b/teuthology/task/pexec.py index 45c6c2fe0b..38a05eb0a6 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'])