Change an annoyingly verbose log message to DEBUG level.

Signed-off-by: Gregory Smith <gps@google.com>


git-svn-id: http://test.kernel.org/svn/autotest/trunk@3357 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/server/autotest.py b/server/autotest.py
index 3f4e5fb..9f81fb2 100644
--- a/server/autotest.py
+++ b/server/autotest.py
@@ -602,9 +602,8 @@
         except Exception:
             pass
 
-        msg = "Persistent state variables pulled back from %s: %s"
-        msg %= (self.host.hostname, state_dict)
-        print msg
+        logging.debug("Persistent state variables pulled back from %s: %s",
+                      self.host.hostname, state_dict)
 
         if "__run_test_cleanup" in state_dict:
             if state_dict["__run_test_cleanup"]: