get rid of some now-obsolete code
* client.common_lib.debug
* abstract_ssh.LoggerFile
Changed {SSHHost,ParamikoHost}.run() default args for std{out,err}_tee to a constant instead of None. This preserves the existing behavior (teeing to the logging module by default), but allows callers to explicitly avoid this teeing if desired, by passing stdout_tee=None.
Signed-off-by: Steve Howard <showard@google.com>
git-svn-id: http://test.kernel.org/svn/autotest/trunk@3293 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/utils/packager.py b/utils/packager.py
index 25dd76d..a9c4d14 100644
--- a/utils/packager.py
+++ b/utils/packager.py
@@ -4,14 +4,14 @@
Utility to upload or remove the packages from the packages repository.
"""
-import os, sys, optparse, socket, tempfile, shutil
+import logging, os, sys, optparse, socket, tempfile, shutil
import common
from autotest_lib.client.common_lib import utils as client_utils
-from autotest_lib.client.common_lib import packages, global_config, debug
+from autotest_lib.client.common_lib import packages, global_config
from autotest_lib.server import utils as server_utils
c = global_config.global_config
-debug.configure(module='utils')
+logging.basicConfig(logging.DEBUG)
def get_exclude_string(client_dir):
'''