From 92bbc5c3e4f84ee141cdf5cc78d296e27f246124 Mon Sep 17 00:00:00 2001 From: =?utf8?q?C=C3=A9dric=20Ollivier?= Date: Sat, 23 Jun 2018 07:35:27 +0200 Subject: [PATCH] Decrease the log level when connecting in singlevm MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit https://build.opnfv.org/ci/view/functest/job/functest-compass-baremetal-daily-master/172/console Change-Id: I0fd3bb833d306626c0eb6393fff3d0fca0579100 Signed-off-by: Cédric Ollivier --- functest/core/singlevm.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functest/core/singlevm.py b/functest/core/singlevm.py index 7520f2649..65743e37f 100644 --- a/functest/core/singlevm.py +++ b/functest/core/singlevm.py @@ -237,7 +237,7 @@ class SingleVm1(VmReady1): self.ssh_connect_timeout)) break except Exception: # pylint: disable=broad-except - self.__logger.info( + self.__logger.debug( "try %s: cannot connect to %s", loop + 1, self.sshvm.public_v4) time.sleep(10) @@ -254,7 +254,7 @@ class SingleVm1(VmReady1): Returns: echo exit codes """ (_, stdout, _) = self.ssh.exec_command('echo Hello World') - self.__logger.info("output:\n%s", stdout.read()) + self.__logger.debug("output:\n%s", stdout.read()) return stdout.channel.recv_exit_status() def run(self, **kwargs): -- 2.16.6