loguru
loguru copied to clipboard
Python logging made (stupidly) simple
Thanks for loguru. I know the "issue" with f-format strings causing problems with some data is noted in the documentation and I've seen several github issues such as #1008 discussing...
Console output from loguru seems to bypass the buffering IPython does to keep its user prompt pinned to the bottom, so you get this: ``` In [1]: 2025-09-23 16:29:39.811 |...
When using a module that uses loguru, its logs don't show up in the notebook or stdout with the following error. The catch is that the environment where loguru is...
Could you confirm when a release containing the fix for Issue #1291 will be available? This is critical for our workflow. Thanks!"
I would like to be able to set some global extra's to all log output. This is useful when logs are written to files or terminal from multiple processed running...
When dealing with multi line output, like with `log.info("This is\nsecond line and\nthird line and\nfouth line")` it would be great if the output in the logs would be split for better...
Auto grouping/indenting log messages based on the end/start character of the message line. This is done by checking the last part of the message, in the example below it's `...`....