]> code.ossystems Code Review - openembedded-core.git/commitdiff
oeqa/target/ssh: Drop command/output logging to debug level
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 9 Nov 2017 10:56:13 +0000 (10:56 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 9 Nov 2017 11:55:25 +0000 (11:55 +0000)
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>
meta/lib/oeqa/core/target/ssh.py

index 927d659525b43b3e2b41ce1a1b8a420c59efec5b..151b99a77f681f65d75a454b0e68f11bf3f0f50d 100644 (file)
@@ -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):