diff mbox

[Branch,~linaro-validation/lava-test/trunk] Rev 129: Fix incorrect logging.debug() format message

Message ID 20120311061909.14388.8224.launchpad@ackee.canonical.com
State Accepted
Headers show

Commit Message

Zygmunt Krynicki March 11, 2012, 6:19 a.m. UTC
------------------------------------------------------------
revno: 129
committer: Zygmunt Krynicki <zygmunt.krynicki@linaro.org>
branch nick: trunk
timestamp: Thu 2012-03-08 18:03:20 +0100
message:
  Fix incorrect logging.debug() format message
modified:
  lava_test/core/tests.py


--
lp:lava-test
https://code.launchpad.net/~linaro-validation/lava-test/trunk

You are subscribed to branch lp:lava-test.
To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-test/trunk/+edit-subscription
diff mbox

Patch

=== modified file 'lava_test/core/tests.py'
--- lava_test/core/tests.py	2011-10-13 10:23:18 +0000
+++ lava_test/core/tests.py	2012-03-08 17:03:20 +0000
@@ -125,9 +125,7 @@ 
                 "no test runner defined for '%s'" % self.test_id)
         artifacts = TestArtifacts.allocate(self.test_id, self._config)
         with changed_directory(self.install_dir):
-            logging.debug(
-                "Invoking %r.run_and_store_artifacts(...)",
-                self.runner, observer)
+            logging.debug("Invoking %r.run(...)", self.runner)
             run_fail = self.runner.run(artifacts, observer, test_options)
 
         return artifacts, run_fail