From e06475564729860c7912c1f5a88ec9dbce9c29d9 Mon Sep 17 00:00:00 2001 From: "Neal H. Walfield" Date: Mon, 26 Dec 2022 17:43:29 +0100 Subject: openpgp: Reduce debug output. - When tracing the execution of a `PacketParser`, don't emit the `BufferedReader`, as this can result in a huge amount of unreadable output. --- openpgp/src/parse.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openpgp/src/parse.rs b/openpgp/src/parse.rs index e7365c00..8488dba5 100644 --- a/openpgp/src/parse.rs +++ b/openpgp/src/parse.rs @@ -4540,7 +4540,7 @@ impl <'a> PacketParser<'a> { // Now read the next packet. loop { // Parse the next packet. - t!("Reading packet at {:?} from: {:?}", self.path, reader); + t!("Reading packet at {:?}", self.path); let recursion_depth = self.recursion_depth(); -- cgit v1.2.3