Skip to content

Commit

Permalink
chore: Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
paveldedik committed Jun 22, 2023
1 parent 8454420 commit 3cae523
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ sentry_sdk.init() # pass dsn in argument or via SENTRY_DSN env variable

structlog.configure(
processors=[
structlog.stdlib.add_logger_name, # optional, but before SentryProcessor()
structlog.stdlib.add_logger_name, # optional, must be placed before SentryProcessor()
structlog.stdlib.add_log_level, # required before SentryProcessor()
SentryProcessor(event_level=logging.ERROR),
],
logger_factory=...,
wrapper_class=...,
logger_factory=structlog.stdlib.LoggerFactory(),
wrapper_class=structlog.stdlib.BoundLogger,
)


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "structlog-sentry"
version = "2.0.2"
version = "2.0.3"
description = "Sentry integration for structlog"
authors = ["Kiwi.com platform <platform@kiwi.com>"]
license = "MIT"
Expand Down

0 comments on commit 3cae523

Please sign in to comment.