Path to this page:
Subject: CVS commit: pkgsrc/sysutils/py-structlog
From: Adam Ciarcinski
Date: 2024-01-08 20:56:14
Message id: 20240108195614.65BF6FA42@cvs.NetBSD.org
Log Message:
py-structlog: updated to 24.1.0
24.1.0
Fixed
- The lazy logger proxy returned by `structlog.get_logger()` now returns its \
initial values when asked for context.
When asked for context before binding for the first time, it returned an empty \
dictionary in 23.3.0.
- The displayed level name when using `structlog.stdlib.BoundLogger.exception()` \
is `"error"` instead of `"exception"`.
Fixes regression in 23.3.0.
- Don't ignore the `width` argument of `RichTracebackFormatter`.
23.3.0
Added
- The colorful development logger is now even more configurable!
Choose freely your colors and the order of the key-value pairs!
Implement your own formatters for certain keys!
Implementing the output on top of the new columns API has changed the default \
very slightly, but shouldn't be noticeable.
- Async log methods (those starting with an `a`) now also support the collection \
of callsite information using `structlog.processors.CallsiteParameterAdder`.
Changed
- `structlog.stdlib.recreate_defaults()` now also adds \
`structlog.stdlib.add_logger_name` to the processors.
Check out the [updated \
screenshot](https://raw.githubusercontent.com/hynek/structlog/main/docs/_static/console_renderer.png)!
Fixed
- The return value from `get_logger()` (a `BoundLoggerLazyProxy`) now passes \
`isinstance`-checks against `structlog.typing.BindableLogger` on Python 3.12.
- `structlog.threadlocal.tmp_bind()` now also works with `BoundLoggerLazyProxy` \
(in other words: before anything is bound to a bound logger).
- stdlib: `ProcessorFormatter` can now be told to not render the log record \
message using `getMessage` and just `str(record.msg)` instead.
- stdlib: `structlog.stdlib.BoundLogger.exception()`'s handling \
of`LogRecord.exc_info` is now set consistent with `logging`.
Files: