Skip to content
Open
Changes from all 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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ In some cases you may want to log sensitive data only in debugging scenarios. T
- `G004` Logging statements should not use `f"..."` for their first argument (only in Python 3.6+)
- `G010` Logging statements should not use `warn` (use `warning` instead)
- `G100` Logging statements should not use `extra` arguments unless whitelisted
- `G101` Logging statement should not use `extra` arguments that clash with LogRecord fields
- `G101` Logging statements should not use `extra` arguments that clash with LogRecord fields
- `G200` Logging statements should not include the exception in logged string (use `exception` or `exc_info=True`)
- `G201` Logging statements should not use `error(..., exc_info=True)` (use `exception(...)` instead)
- `G202` Logging statements should not use redundant `exc_info=True` in `exception`
Expand Down