aboutsummaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2017-11-09 10:56:13 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-11-09 11:55:25 +0000
commitcaeb5dcfbd3c1d71f8e0eb78b3dd45d5ce349d25 (patch)
tree4f4079059e84a9a93741c297b06e602a44b51f4d /meta
parent4ff678137a55b93c9ba2cbffda34335ba859f704 (diff)
downloadopenembedded-core-contrib-caeb5dcfbd3c1d71f8e0eb78b3dd45d5ce349d25.tar.gz
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 <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/lib/oeqa/core/target/ssh.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/core/target/ssh.py b/meta/lib/oeqa/core/target/ssh.py
index 927d659525..151b99a77f 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):