]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
pexec: Logging each command isn't useful
authorSam Lang <sam.lang@inktank.com>
Wed, 14 Nov 2012 16:45:10 +0000 (10:45 -0600)
committerSam Lang <sam.lang@inktank.com>
Wed, 14 Nov 2012 16:45:10 +0000 (10:45 -0600)
Signed-off-by: Sam Lang <sam.lang@inktank.com>
teuthology/task/pexec.py

index 45c6c2fe0bec0af1a3232fdc74a656db89d3b830..38a05eb0a63e951d38961168eea3b42847676c21 100644 (file)
@@ -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'])