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 44fde00 commit c388d49Copy full SHA for c388d49
json_logging/__init__.py
@@ -263,7 +263,9 @@ def format(self, record):
263
"thread": record.threadName,
264
"level": record.levelname,
265
"line_no": record.lineno,
266
- "correlation_id": _request_util.get_correlation_id()}
+ "correlation_id": _request_util.get_correlation_id(),
267
+ "msg": record.getMessage()
268
+ }
269
270
if hasattr(record, 'props'):
271
json_log_object.update(record.props)
0 commit comments