From bb5187eb0a4c52835e67f904be9ff921ce13d8fb Mon Sep 17 00:00:00 2001 From: mfahampshire Date: Tue, 5 Aug 2025 14:04:34 +0200 Subject: [PATCH] warning logs (more) --- .../client_handling/websocket/connection_handler/fresh.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gateway/src/node/client_handling/websocket/connection_handler/fresh.rs b/gateway/src/node/client_handling/websocket/connection_handler/fresh.rs index 93f2d0c86d..c108850a3a 100644 --- a/gateway/src/node/client_handling/websocket/connection_handler/fresh.rs +++ b/gateway/src/node/client_handling/websocket/connection_handler/fresh.rs @@ -927,7 +927,10 @@ impl FreshHandler { // Probably a nicer way to do this but for now just match let _guard = match &span { - Some(s) => Some(s.enter()), + Some(s) => { + warn!("ENTERED SPAN"); + Some(s.enter()) + } None => { warn!("COULDN'T ENTER SPAN"); None