Add basic logging to compile_gwt_clients so that users will actually see the output from utils.run
Signed-off-by: Scott Zawalski <[email protected]> --- autotest/utils/compile_gwt_clients.py 2010-02-11 14:45:46.000000000 -0800 +++ autotest/utils/compile_gwt_clients.py 2010-02-11 14:45:46.000000000 -0800 @@ -1,11 +1,13 @@ #!/usr/bin/python -import sys, os, shutil, errno, optparse import common +import sys, os, shutil, errno, optparse, logging from autotest_lib.client.common_lib import error, utils """ Compile All Autotest GWT Clients Living in autotest/frontend/client/src """ + +logging.basicConfig(level=logging.DEBUG) _AUTOTEST_DIR = common.autotest_dir _DEFAULT_GWT_DIR = '/usr/local/lib/gwt' _DEFAULT_APP_DIR = os.path.join(_AUTOTEST_DIR, 'frontend/client') _______________________________________________ Autotest mailing list [email protected] http://test.kernel.org/cgi-bin/mailman/listinfo/autotest
