Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ dictionaries, where each dictionary entry must abide by the requirements detaile
[below](#key-value-pair-requirements). The handler will also automatically include certain
[metadata](#automatically-generated-kv-pairs) (e.g., the log event's level) with each log event.

> [!WARNING]
> This handler cannot be used with other logging handlers since it requires the `msg` argument
> passed to the logging method to be a dictionary. In contrast, standard handlers typically treat
> `msg` as a format string. In the future, this handler may be moved or reworked to avoid confusion.

> [!NOTE]
> Since this handler accepts structured log events, it doesn't support setting a
> [Formatter][py-logging-formatter] (because the log events don't need to be formatted into a
Expand Down
Loading