Don't log it as an ERROR when a site import fails.  Leave that as a
DEBUG log line.  Not everyone has site implementations for everything,
its not an error.

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


git-svn-id: http://test.kernel.org/svn/autotest/trunk@4368 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/client/common_lib/utils.py b/client/common_lib/utils.py
index fcbdd84..b92af211 100644
--- a/client/common_lib/utils.py
+++ b/client/common_lib/utils.py
@@ -1048,7 +1048,7 @@
 
     obj = getattr(module, name, cant_import)
     if obj is cant_import:
-        logging.error("unable to import site symbol '%s', using non-site "
+        logging.debug("unable to import site symbol '%s', using non-site "
                       "implementation", name)
         return dummy