From e9c6dbe6d3dafff46ae2b065ff11b9f9a5a28741 Mon Sep 17 00:00:00 2001 From: Aaron LI Date: Sun, 23 Jul 2017 09:38:27 +0800 Subject: Update bin scripts to use global "CONFIGS" Also update copyright year/email and minor cleanups Signed-off-by: Aaron LI --- bin/hpx2healpix | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) (limited to 'bin/hpx2healpix') diff --git a/bin/hpx2healpix b/bin/hpx2healpix index e5460c8..2c09057 100755 --- a/bin/hpx2healpix +++ b/bin/hpx2healpix @@ -1,6 +1,7 @@ #!/usr/bin/env python3 +# -*- mode: python -*- # -# Copyright (c) 2016 Weitian LI +# Copyright (c) 2016-2017 Weitian LI # MIT license """ @@ -14,7 +15,7 @@ import argparse import logging import fg21sim -from fg21sim.configs import configs +from fg21sim.configs import CONFIGS from fg21sim.utils import setup_logging @@ -35,15 +36,11 @@ def main(): help="be quiet so do not log messages to screen") args = parser.parse_args() - if args.quiet: - log_stream = "" - else: - log_stream = None - tool = os.path.basename(sys.argv[0]) pkgname = fg21sim.__pkgname__ - setup_logging(dict_config=configs.logging, + log_stream = "" if args.quiet else None + setup_logging(dict_config=CONFIGS.logging, level=args.loglevel, stream=log_stream, logfile=args.logfile) -- cgit v1.2.2