From 622d63564591c192af122f13da243225c2219934 Mon Sep 17 00:00:00 2001 From: Mike Dilger Date: Wed, 21 Feb 2024 11:15:50 +1300 Subject: [PATCH] For the moment, log REQ subids, to help us determine if we have problems --- src/nostr.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/nostr.rs b/src/nostr.rs index 4f23dfb..0935429 100644 --- a/src/nostr.rs +++ b/src/nostr.rs @@ -61,6 +61,8 @@ impl WebSocketService { outpos += outlen; verify_char(input, b'"', &mut inpos)?; // FIXME: json_unescape should eat the closing quote + log::info!("{}: REQ[\"{}\",..]", self.peer, subid); + // Read the filter into the session buffer let mut filters: Vec = Vec::new(); loop {