loguru 0.6.0-1 source package in Ubuntu
Changelog
loguru (0.6.0-1) unstable; urgency=medium * Add myself to uploaders * New upstream version 0.6.0 * Drop patches cherry-picked from upstream * Refresh test_time_rotation_reopening_native.patch * d/rules: Do not remove test_exceptions_formatting.py + Seems to be fixed in this release * Add autopkgtests -- Nilesh Patra <email address hidden> Sun, 13 Feb 2022 20:33:47 +0530
Upload details
- Uploaded by:
- Debian Python Team
- Uploaded to:
- Sid
- Original maintainer:
- Debian Python Team
- Architectures:
- all
- Section:
- misc
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Jammy | release | universe | misc |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
loguru_0.6.0-1.dsc | 2.2 KiB | 9f7eb9a22e1a0436328d5c85be073efa30e6dc5e6ec7a810858dbf8edb321de8 |
loguru_0.6.0.orig.tar.gz | 409.7 KiB | 5d8af7847e56e8b2ff9970e45a85c2dac28d9d225f0a03f9a9d48f5640bafc71 |
loguru_0.6.0-1.debian.tar.xz | 3.6 KiB | 12e80cdfaf02ee03947dd76c86084b99e13b151beb5355de02f5a7923f82837e |
Available diffs
- diff from 0.5.3-5 to 0.6.0-1 (36.6 KiB)
No changes file available.
Binary packages built by this source
- python3-loguru: enjoyable loggin' for Python
Logging is fundamental to every application
and eases the process of debugging. Using Loguru user has no excuse
not to use logging from the start, this is as simple as
from loguru import logger.
.
Also, this library is intended to make Python logging less painful
by adding a bunch of useful functionalities that solve caveats of the
standard loggers. Using logs in your application should be an automatism,
Loguru tries to make it both pleasant and powerful.
Ready to use out of the box without boilerplate
.
* No Handler, no Formatter, no Filter: one function to rule them all
* Easier file logging with rotation / retention / compression
* Modern string formatting using braces style
* Exceptions catching within threads or main
* Pretty logging with colors
* Asynchronous, Thread-safe, Multiprocess-safe
* Fully descriptive exceptions
* Structured logging as needed
* Lazy evaluation of expensive functions
* Customizable levels
* Better datetime handling
* Suitable for scripts and libraries
* Entirely compatible with standard logging
* Personalizable defaults through environment variables
* Convenient parser
* Exhaustive notifier