Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Improve comments in the structured logging code. #10188

Merged
merged 1 commit into from
Jun 16, 2021
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions changelog.d/10188.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Improve comments in structured logging code.
9 changes: 5 additions & 4 deletions synapse/logging/_terse_json.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@

_encoder = json.JSONEncoder(ensure_ascii=False, separators=(",", ":"))

# The properties of a standard LogRecord.
_LOG_RECORD_ATTRIBUTES = {
# The properties of a standard LogRecord that should be ignored when generating
# JSON logs.
_IGNORED_LOG_RECORD_ATTRIBUTES = {
"args",
"asctime",
"created",
Expand Down Expand Up @@ -59,9 +60,9 @@ def format(self, record: logging.LogRecord) -> str:
return self._format(record, event)

def _format(self, record: logging.LogRecord, event: dict) -> str:
# Add any extra attributes to the event.
# Add attributes specified via the extra keyword to the logged event.
for key, value in record.__dict__.items():
if key not in _LOG_RECORD_ATTRIBUTES:
if key not in _IGNORED_LOG_RECORD_ATTRIBUTES:
event[key] = value

return _encoder.encode(event)
Expand Down