We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52fda5b commit 3217a7dCopy full SHA for 3217a7d
HISTORY.md
@@ -1,3 +1,13 @@
1
+# 0.0.4 (2022-03-29)
2
+
3
+- Fix the usage documentation
4
+- Escape newline characters in all logged values. Previously, you could generate
5
+ multi-line log statements. This should never be the case.
6
+- Add support for auto-generating `exc_info` parameters. If the log record is
7
+ generated with `exc_info`, as in when using `logging.exception(...)`, the
8
+ log message will contain properly formatted exception and traceback information.
9
+- Add support for logging with an empty message dictionary.
10
11
# 0.0.3 (2022-01-13)
12
13
- Include type hints
logfmter/__init__.py
@@ -2,4 +2,4 @@
from logfmter.formatter import Logfmter
-__version__ = "0.0.3"
+__version__ = "0.0.4"
0 commit comments