diff options
author | Aaron LI <aaronly.me@outlook.com> | 2016-11-04 13:59:20 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2016-11-04 13:59:20 +0800 |
commit | 32efcaff8b0de30b7f3abb56dd195695530bcbfe (patch) | |
tree | 228ebdb9613fe43bb144cc05001cf9f98856891e /bin/fg21sim | |
parent | 54b756d88b72eb07f4ee9fbb6b5f9d35ae1484a3 (diff) | |
download | fg21sim-32efcaff8b0de30b7f3abb56dd195695530bcbfe.tar.bz2 |
bin: Update "log_stream" and "loglevel" handling
* bin/fg21sim: Simplify the "log_stream" assignment
* bin/fg21sim-webui: Also enable debug logging when turning on debug
flag for the tornado; also update the docstring a little.
Diffstat (limited to 'bin/fg21sim')
-rwxr-xr-x | bin/fg21sim | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/bin/fg21sim b/bin/fg21sim index 42bdcca..e605c97 100755 --- a/bin/fg21sim +++ b/bin/fg21sim @@ -38,11 +38,7 @@ def main(): sep="\n", file=sys.stderr) check_configs(configs) - if args.quiet: - log_stream = "" - else: - log_stream = None - + log_stream = "" if args.quiet else None setup_logging(dict_config=configs.logging, level=args.loglevel, stream=log_stream, |