summaryrefslogtreecommitdiff
path: root/xnt
diff options
context:
space:
mode:
authorkennyballou <kballou@onyx.boisestate.edu>2013-03-10 21:21:14 -0600
committerkennyballou <kballou@onyx.boisestate.edu>2013-03-10 21:21:14 -0600
commit21ce7cebea3fa92f475b1fa44d0e6a8ed09e9a09 (patch)
tree9cfeb334357eaa0f863221252605f4bfeb8d5436 /xnt
parent3ad086d18c10d84cd2ae93f19e04ad5e8e7f7f79 (diff)
downloadxnt-21ce7cebea3fa92f475b1fa44d0e6a8ed09e9a09.tar.gz
xnt-21ce7cebea3fa92f475b1fa44d0e6a8ed09e9a09.tar.xz
Ensure child logging module level is set
Diffstat (limited to 'xnt')
-rw-r--r--xnt/xenant.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/xnt/xenant.py b/xnt/xenant.py
index 02858e9..e616677 100644
--- a/xnt/xenant.py
+++ b/xnt/xenant.py
@@ -36,7 +36,8 @@ def main():
args = parse_args(sys.argv[1:])
build_file = "./build.py"
if args["verbose"]:
- LOGGER.setLevel(logging.DEBUG)
+ LOGGER.setLevel(logging.INFO)
+ logging.getLogger("xnt.tasks").setLevel(logging.INFO)
if args["build-file"]:
build_file = args["build-file"]
if args["list-targets"]: