diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-11-09 10:56:13 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-11-09 12:24:24 +0000 |
commit | fccc51596fde0afdf1e10e87a94ff02778e1383a (patch) | |
tree | 55895c7ca7dc6f2c3a9308af3fae8c5e6d763fd9 /meta | |
parent | 0e198a7311fe341c5bc20a697e90da2928c44262 (diff) | |
download | poky-fccc51596fde0afdf1e10e87a94ff02778e1383a.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.
(From OE-Core rev: caeb5dcfbd3c1d71f8e0eb78b3dd45d5ce349d25)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oeqa/core/target/ssh.py | 2 |
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): | |||
83 | processTimeout = self.timeout | 83 | processTimeout = self.timeout |
84 | 84 | ||
85 | status, output = self._run(sshCmd, processTimeout, True) | 85 | status, output = self._run(sshCmd, processTimeout, True) |
86 | self.logger.info('\nCommand: %s\nOutput: %s\n' % (command, output)) | 86 | self.logger.debug('Command: %s\nOutput: %s\n' % (command, output)) |
87 | return (status, output) | 87 | return (status, output) |
88 | 88 | ||
89 | def copyTo(self, localSrc, remoteDst): | 89 | def copyTo(self, localSrc, remoteDst): |