We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ed32af commit 5a669f4Copy full SHA for 5a669f4
octue/cloud/pub_sub/logging.py
@@ -54,11 +54,10 @@ def emit(self, record):
54
originator=self.originator,
55
recipient=self.recipient,
56
order=self.order,
57
+ question_uuid=self.question_uuid,
58
parent_question_uuid=self.parent_question_uuid,
- attributes={
59
- "question_uuid": self.question_uuid,
60
- "sender_type": "CHILD", # The sender type is repeated here as a string to avoid a circular import.
61
- },
+ # The sender type is repeated here as a string to avoid a circular import.
+ attributes={"sender_type": "CHILD"},
62
)
63
64
except Exception: # noqa
0 commit comments