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