From bed5c9ab527fe61c8e39a41d6c3464de64d06d6a Mon Sep 17 00:00:00 2001 From: NagyZoltanPeter <113987313+NagyZoltanPeter@users.noreply.github.com> Date: Mon, 30 Jun 2025 17:11:38 +0200 Subject: [PATCH] Fix legacy lightpush diagnostic log(#3478) DST team needs unintentionally removed my_peer_id back for legacy-lightpush for their analysis tool --- waku/waku_lightpush_legacy/protocol.nim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/waku/waku_lightpush_legacy/protocol.nim b/waku/waku_lightpush_legacy/protocol.nim index feb6e17dc..75bededaf 100644 --- a/waku/waku_lightpush_legacy/protocol.nim +++ b/waku/waku_lightpush_legacy/protocol.nim @@ -45,7 +45,8 @@ proc handleRequest*( let msg_hash = pubsubTopic.computeMessageHash(message).to0xHex() waku_lightpush_messages.inc(labelValues = ["PushRequest"]) - notice "handling lightpush request", + notice "handling legacy lightpush request", + my_peer_id = wl.peerManager.switch.peerInfo.peerId, peer_id = peerId, requestId = requestId, pubsubTopic = pubsubTopic,