Loguru v0.7.3 Release Notes
Release Date: 2024-12-06 // over 1 year ago-
- 🛠 Fix Cython incompatibility caused by the absence of underlying stack frames, which resulted in a
ValueErrorduring logging (#88). - 🛠 Fix possible
RuntimeErrorwhen removing all handlers withlogger.remove()due to thread-safety issue (#1183, thanks @jeremyk). - 🛠 Fix
diagnose=Trueoption of exception formatting not working as expected with Python 3.13 (#1235, thanks @etianen). - 🛠 Fix non-standard level names not fully compatible with
logging.Formatter()(#1231, thanks @yechielb2000). - 🛠 Fix inability to display a literal
"\"immediately before color markups (#988). - Fix possible infinite recursion when an exception is raised from a
__repr__method decorated withlogger.catch()(#1044). - 👌 Improve performance of
datetimeformatting while logging messages (#1201, thanks @trim21). - ⬇️ Reduce startup time in the presence of installed but unused
IPythonthird-party library (#1001, thanks @zakstucke).
- 🛠 Fix Cython incompatibility caused by the absence of underlying stack frames, which resulted in a