Skip to content

Commit e8e0f96

Browse files
committed
fix(logging): Set the logging level explicitly, before the helper
1 parent 6f9b4d2 commit e8e0f96

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

wiki_rag/util.py

+4-6
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010

1111

1212
def setup_logging(level: str = "INFO") -> logging.Logger:
13-
"""Set up the logging configuration.
14-
15-
Very basic for now, just log to stderr, with a few extra fields (color, time, level, name, ...).
16-
"""
13+
"""Set up the logging configuration."""
1714
logging.Formatter.converter = time.gmtime
1815

1916
log = logging.getLogger()
2017

18+
# Set the log level explicitly
19+
log.setLevel(level)
20+
2121
# Let's add the color handler.
2222
if not log.hasHandlers():
2323
handler = colorlog.StreamHandler()
@@ -28,7 +28,5 @@ def setup_logging(level: str = "INFO") -> logging.Logger:
2828
style="%",
2929
))
3030
log.addHandler(handler)
31-
log.setLevel(level)
32-
log.propagate = False
3331

3432
return log

0 commit comments

Comments
 (0)