From a3cf47ac338fa574b9cfb3f485b94d99492f5836 Mon Sep 17 00:00:00 2001 From: Christien Rioux Date: Fri, 28 Feb 2025 19:21:45 -0500 Subject: [PATCH] [ci skip] tweak debugging output --- veilid-core/src/rpc_processor/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/veilid-core/src/rpc_processor/mod.rs b/veilid-core/src/rpc_processor/mod.rs index 300f35dc..6b22f01d 100644 --- a/veilid-core/src/rpc_processor/mod.rs +++ b/veilid-core/src/rpc_processor/mod.rs @@ -527,11 +527,11 @@ impl RPCProcessor { .await; match &out { Err(e) => { - veilid_log!(self debug "RPC Lost (id={} {}): {}", id, debug_string, e); + veilid_log!(self debug "RPC Lost (id={} {}): {} ({}) ", id, debug_string, e, waitable_reply.context.send_data_result.unique_flow().flow); self.record_lost_answer(&waitable_reply.context); } Ok(TimeoutOr::Timeout) => { - veilid_log!(self debug "RPC Lost (id={} {}): Timeout", id, debug_string); + veilid_log!(self debug "RPC Lost (id={} {}): Timeout ({})", id, debug_string, waitable_reply.context.send_data_result.unique_flow().flow); self.record_lost_answer(&waitable_reply.context); } Ok(TimeoutOr::Value((rpcreader, _))) => {