From 958fbef248cd6b065301dd7d2986fd28da7c8318 Mon Sep 17 00:00:00 2001 From: cortadocodes Date: Mon, 11 Mar 2024 16:53:45 +0000 Subject: [PATCH] ENH: Include question UUID in delivery acknowledgement log message --- octue/cloud/pub_sub/service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/octue/cloud/pub_sub/service.py b/octue/cloud/pub_sub/service.py index 7bf7f571f..c1266e262 100644 --- a/octue/cloud/pub_sub/service.py +++ b/octue/cloud/pub_sub/service.py @@ -529,7 +529,7 @@ def _send_delivery_acknowledgment(self, topic, question_uuid, timeout=30): attributes={"question_uuid": question_uuid, "sender_type": CHILD_SENDER_TYPE}, ) - logger.info("%r acknowledged receipt of question.", self) + logger.info("%r acknowledged receipt of question %r.", self, question_uuid) def _send_heartbeat(self, topic, question_uuid, timeout=30): """Send a heartbeat to the parent, indicating that the service is alive.