From accf0afb45407d131a15c7033949992fe842f29e Mon Sep 17 00:00:00 2001 From: Fangjun Kuang Date: Sun, 5 Jun 2022 22:38:46 +0800 Subject: [PATCH] Remove force=True from logging to support Python < 3.8 --- icefall/utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/icefall/utils.py b/icefall/utils.py index c9045006d..b38574f0c 100644 --- a/icefall/utils.py +++ b/icefall/utils.py @@ -131,7 +131,6 @@ def setup_logger( format=formatter, level=level, filemode="w", - force=True, ) if use_console: console = logging.StreamHandler()