You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(logger): preserve user-defined handlers in set_logger_format()
Previously, set_logger_format() called logger.handlers.clear() which
removed all handlers including user-defined FileHandlers. This made it
impossible to capture initialization logs to a file.
Fix: only remove pure StreamHandlers, preserving FileHandlers and other
custom handlers added by the user.
Closes#375
0 commit comments