summaryrefslogtreecommitdiffstats
path: root/openpgp/src/parse.rs
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2023-01-19 12:20:20 +0100
committerJustus Winter <justus@sequoia-pgp.org>2023-01-19 17:32:57 +0100
commit89d4330b05b6aa365087387aaeda9be38a3f02ea (patch)
tree0535c858cd2b6f49844401f6300fc4a390873abc /openpgp/src/parse.rs
parentf1ab4ebe808038ad59d808717f43301a4019bb50 (diff)
openpgp: Improve tracing.
Diffstat (limited to 'openpgp/src/parse.rs')
-rw-r--r--openpgp/src/parse.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/openpgp/src/parse.rs b/openpgp/src/parse.rs
index 17d9fe11..f87fb262 100644
--- a/openpgp/src/parse.rs
+++ b/openpgp/src/parse.rs
@@ -4339,6 +4339,7 @@ impl <'a> PacketParser<'a> {
};
let tag = header.ctb().tag();
+ t!("Packet's tag is {}", tag);
// A buffered_reader::Dup always has an inner.
let mut bio = Box::new(bio).into_inner().unwrap();