diff options
author | Aaron LI <aly@aaronly.me> | 2017-10-16 15:28:26 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2017-10-16 15:28:26 +0800 |
commit | 008914cd9c10633e1f4d04770184fb3412e171b7 (patch) | |
tree | 3b809099b0ab75bbc51a28b88d41db43a8d3cd80 /fg21sim/configs/manager.py | |
parent | 62a6a5a15a759da45cec210babbca52ca27a25b5 (diff) | |
download | fg21sim-008914cd9c10633e1f4d04770184fb3412e171b7.tar.bz2 |
configs: remove "filemode" option
Diffstat (limited to 'fg21sim/configs/manager.py')
-rw-r--r-- | fg21sim/configs/manager.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/fg21sim/configs/manager.py b/fg21sim/configs/manager.py index 9b41b72..4143a8f 100644 --- a/fg21sim/configs/manager.py +++ b/fg21sim/configs/manager.py @@ -532,9 +532,8 @@ class ConfigManager: if stream: handlers.append(StreamHandler(getattr(sys, stream))) logfile = conf["filename"] - filemode = "a" if conf["appendmode"] else "w" if logfile: - handlers.append(FileHandler(logfile, mode=filemode)) + handlers.append(FileHandler(logfile)) # Explicitly add the formatter to each handler formatter = logging.Formatter(fmt=conf["format"], @@ -546,7 +545,6 @@ class ConfigManager: "level": getattr(logging, level), "format": conf["format"], "datefmt": conf["datefmt"], - "filemode": filemode, "handlers": handlers, } return logconf |