Hacker News new | ask | show | jobs
by codethief 1456 days ago
Does loguru come with a lot of global state like the standard logging library? In my experience this makes logging a real PITA when forking multiple processes…
1 comments

I think it may even have more global state than standard logging.

This is the standard approach to produce a log:

```from loguru import logger logger.info("hello world") ```

But betteid avise you to research more, because the library is nice to use and is well documented.

Thanks, I'll have a look then!