summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeal H. Walfield <neal@pep.foundation>2022-12-26 17:43:29 +0100
committerNeal H. Walfield <neal@pep.foundation>2023-01-06 13:24:54 +0100
commite06475564729860c7912c1f5a88ec9dbce9c29d9 (patch)
tree0971b2a63c0c6470e61d4070e2d1b98bd9e8e68a
parent9bf0d21b5886b539e6dd9338073ed1295468deee (diff)
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.
-rw-r--r--openpgp/src/parse.rs2
1 files changed, 1 insertions, 1 deletions
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();