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 09fcea6 commit 747db44Copy full SHA for 747db44
temporalio/workflow.py
@@ -501,7 +501,7 @@ class UpdateInfo:
501
"""Update type name."""
502
503
@property
504
- def logger_details(self) -> Mapping[str, Any]:
+ def _logger_details(self) -> Mapping[str, Any]:
505
"""Data to be included in string appended to default logging output."""
506
return {
507
"update_id": self.id,
@@ -1257,7 +1257,7 @@ def process(
1257
extra["workflow_info"] = runtime.workflow_info()
1258
update_info = current_update_info()
1259
if update_info:
1260
- update_details = update_info.logger_details
+ update_details = update_info._logger_details
1261
if self.workflow_info_on_message:
1262
msg_extra.update(update_details)
1263
if self.workflow_info_on_extra:
0 commit comments