Index: client/bin/harness.py |
diff --git a/client/bin/harness.py b/client/bin/harness.py |
index b4c9dfd4fdad861645e11282d4f7c8f73a471a80..bcb4f966969734be85975eea2164aef1df3da7fd 100644 |
--- a/client/bin/harness.py |
+++ b/client/bin/harness.py |
@@ -5,7 +5,7 @@ The interface between the client and the server when hosted. |
__author__ = """Copyright Andy Whitcroft 2006""" |
-import os, sys |
+import os, sys, logging |
import common |
class harness(object): |
@@ -86,6 +86,8 @@ def select(which, job): |
if not which: |
which = 'standalone' |
+ logging.debug('Selected harness: %s' % which) |
+ |
harness_name = 'harness_%s' % which |
harness_module = common.setup_modules.import_module(harness_name, |
'autotest_lib.client.bin') |