diff options
author | lloyd <[email protected]> | 2009-07-07 21:12:36 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-07-07 21:12:36 +0000 |
commit | c6298b35f7821f3ebd8c26d12fe3f982fdbdbdf8 (patch) | |
tree | cc1ac025f3326a16b127097c239d4220565eae2b /configure.py | |
parent | 5dd07b73e4e5c8f88f9b64273e8e4ab0862a0db8 (diff) |
Make default logging INFO rather than DEBUG
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py index 5be984ed7..7e1c28e31 100755 --- a/configure.py +++ b/configure.py @@ -892,7 +892,7 @@ def main(argv = None): argv = sys.argv logging.basicConfig(stream = sys.stdout, format = '%(message)s', - level = logging.DEBUG) + level = logging.INFO) logging.debug('%s invoked with options "%s"' % ( argv[0], ' '.join(argv[1:]))) |