diff options
-rwxr-xr-x | utils/compile_gwt_clients.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/utils/compile_gwt_clients.py b/utils/compile_gwt_clients.py index cc68f3f5..f198d5bd 100755 --- a/utils/compile_gwt_clients.py +++ b/utils/compile_gwt_clients.py @@ -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') |