summaryrefslogtreecommitdiffstats
path: root/openpgp/src/cert/bundle.rs
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp/src/cert/bundle.rs')
-rw-r--r--openpgp/src/cert/bundle.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/openpgp/src/cert/bundle.rs b/openpgp/src/cert/bundle.rs
index f8b27245..eaaca0ef 100644
--- a/openpgp/src/cert/bundle.rs
+++ b/openpgp/src/cert/bundle.rs
@@ -688,12 +688,15 @@ impl<C> ComponentBundle<C> {
if let Some(revs)
= check(&self.self_revocations, self.hash_algo_security)
{
+ t!("-> RevocationStatus::Revoked({})", revs.len());
RevocationStatus::Revoked(revs)
} else if let Some(revs)
= check(&self.other_revocations, Default::default())
{
+ t!("-> RevocationStatus::CouldBe({})", revs.len());
RevocationStatus::CouldBe(revs)
} else {
+ t!("-> RevocationStatus::NotAsFarAsWeKnow");
RevocationStatus::NotAsFarAsWeKnow
}
}