Releases: jteppinette/python-logfmter
Releases · jteppinette/python-logfmter
v0.0.8
v0.0.7
- Improve documentation
- Add support for default key/value pairs provided via log record factory.
- Fix duplication issue that happened when keys/extras/msg values overlapped.
v0.0.6
- Improve documentation.
- Normalize keys to prevent users from breaking the logfmt style.
v0.0.5
- Add support for include native log record attributes in the final log output.
- Add support for overriding the date format used when formatting the
asctime
attribute.
v0.0.4
- Fix the usage documentation
- Escape newline characters in all logged values. Previously, you could generate
multi-line log statements. This should never be the case. - Add support for auto-generating
exc_info
parameters. If the log record is
generated withexc_info
, as in when usinglogging.exception(...)
, the
log message will contain properly formatted exception and traceback information. - Add support for logging with an empty message dictionary.
v0.0.3
- Include type hints
v0.0.1
- Incept