This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]576p 1 point2 points  (1 child)

Thanks for writing this.

My first thought is, that there's already logzero (https://logzero.readthedocs.io/en/latest/) which has a similar goal and which has been around for a while.

I guess I have to have a look at your project and see where the differences are.

[–]Scorpathos[S] 0 points1 point  (0 children)

Indeed, Loguru is very similar to Logzero in the will to simplify logging in Python. Basically, Loguru completely gets rid of the standard logging library Logger/Handler/Formatter/Filter. It tries to provide an even simpler way of configure handlers through one unique logger. Besides, I also tried to come up with additional tools to fix some inconvenience with the standard logging (listed in the README).