Utilities, classes, functions, constants, & more for the loguru library.
When using the init_logger() function, make sure to run it as soon as possible. If possible,
start your script like:
| ...
## List of Loguru sink dicts
loguru_sinks = [LoguruSinkStdOut(level="DEBUG").as_dict(), LoguruSinkErrFile().as_dict()]
if __name__ == "__main__":
init_logger(sinks=loguru_sinks)
...
|