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
I have been using loguru for a year now and I really like it. I think this could make the logging much easier for us.
There is the user aspect.
One could just do logger.add("alchemlyb.log") to save the log to a file.
Also one doesn't need to initialise a logger and the function name would just be printed to the start of the line.
For debugging purpose, the loguru would also print all the public variables to the log.
The text was updated successfully, but these errors were encountered:
Does it work with the Python logger? What I find useful is that my application code can just collect all logging from all libraries that it imports. It becomes a bit awkward when not all libraries respect my choices.
I have been using loguru for a year now and I really like it. I think this could make the logging much easier for us.
There is the user aspect.
One could just do
logger.add("alchemlyb.log")
to save the log to a file.Also one doesn't need to initialise a logger and the function name would just be printed to the start of the line.
For debugging purpose, the loguru would also print all the public variables to the log.
The text was updated successfully, but these errors were encountered: