From: Richard Purdie Date: Thu, 9 Nov 2017 10:56:13 +0000 (+0000) Subject: oeqa/target/ssh: Drop command/output logging to debug level X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~19634 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=caeb5dcfbd3c1d71f8e0eb78b3dd45d5ce349d25;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git oeqa/target/ssh: Drop command/output logging to debug level This ensures the console is kept clear of confusing output but that the main logs contain good debugging information. Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oeqa/core/target/ssh.py b/meta/lib/oeqa/core/target/ssh.py index 927d659525b..151b99a77f6 100644 --- a/meta/lib/oeqa/core/target/ssh.py +++ b/meta/lib/oeqa/core/target/ssh.py @@ -83,7 +83,7 @@ class OESSHTarget(OETarget): processTimeout = self.timeout status, output = self._run(sshCmd, processTimeout, True) - self.logger.info('\nCommand: %s\nOutput: %s\n' % (command, output)) + self.logger.debug('Command: %s\nOutput: %s\n' % (command, output)) return (status, output) def copyTo(self, localSrc, remoteDst):