From c08fe486038440c08d99562858a951ddbdf0aa7b Mon Sep 17 00:00:00 2001 From: Zengwei Yao Date: Sat, 4 May 2024 11:42:23 +0800 Subject: [PATCH] add force=True to logging.basicConfig (#1613) --- icefall/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/icefall/utils.py b/icefall/utils.py index ec6aee6d0..57467cb56 100644 --- a/icefall/utils.py +++ b/icefall/utils.py @@ -163,6 +163,7 @@ def setup_logger( format=formatter, level=level, filemode="w", + force=True, ) if use_console: console = logging.StreamHandler()