From f80bd9c6adbc7a1c6f13c391717199fd0a19cf55 Mon Sep 17 00:00:00 2001 From: Kostya Shishkov Date: Sun, 8 Mar 2026 17:46:12 +0100 Subject: [PATCH] use more verbose message when reporting frame decoding error --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index a4ad150..fc14275 100644 --- a/src/main.rs +++ b/src/main.rs @@ -314,7 +314,7 @@ fn main() { println!("ignoring missing ref"); }, Err(reason) => { - println!("error decoding frame {:?}", reason); + println!("error decoding frame for stream {idx}: {:?}", reason); if !ignore_errors { break; } -- 2.39.5