From: Loic Dachary Date: Sun, 29 Nov 2015 18:02:25 +0000 (+0100) Subject: orchestra: display connect_args on debug X-Git-Tag: 1.1.0~724^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=f766446f0eabbeb9ddd248456c0e69f70232b44c;p=teuthology.git orchestra: display connect_args on debug Instead of log.info because it is noisy. Signed-off-by: Loic Dachary --- diff --git a/teuthology/orchestra/connection.py b/teuthology/orchestra/connection.py index cc5f1d8c..d916d782 100644 --- a/teuthology/orchestra/connection.py +++ b/teuthology/orchestra/connection.py @@ -100,7 +100,7 @@ def connect(user_at_host, host_key=None, keep_alive=False, timeout=60, value = os.path.expanduser(value) connect_args[arg_name] = value - log.info(connect_args) + log.debug(connect_args) if not retry: ssh.connect(**connect_args)