loguru 0.6.0-1ubuntu1 source package in Ubuntu
Changelog
loguru (0.6.0-1ubuntu1) jammy; urgency=medium * Backport repr() test fix from 0.6.0-2 in kinetic to avoid test failure and FTBFS with Python 3.11 (and 3.10.6) (LP: #1988861) -- Graham Inggs <email address hidden> Wed, 07 Sep 2022 06:59:00 +0000
Upload details
- Uploaded by:
- Graham Inggs
- Uploaded to:
- Jammy
- Original maintainer:
- Ubuntu Developers
- Architectures:
- all
- Section:
- misc
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Jammy | updates | universe | misc |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
loguru_0.6.0.orig.tar.gz | 409.7 KiB | 5d8af7847e56e8b2ff9970e45a85c2dac28d9d225f0a03f9a9d48f5640bafc71 |
loguru_0.6.0-1ubuntu1.debian.tar.xz | 4.7 KiB | 2432d80685d066930af1eb59f380660e2e95c989b8a1a3e4e45d7267e5d1d81b |
loguru_0.6.0-1ubuntu1.dsc | 2.3 KiB | 0bacb313495da19f36773bf97460261eaa178f87a7e01ad1b613144083c4fe82 |
Available diffs
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