remove silent flag in favour of RUST_LOG

This commit is contained in:
Johann150 2021-03-26 20:29:35 +01:00
parent 2934350485
commit d24db63583
No known key found for this signature in database
GPG key ID: 9EE6577A2A06F8F1
4 changed files with 12 additions and 14 deletions

View file

@ -204,6 +204,11 @@ impl CertStore {
a.len().cmp(&b.len()).reverse()
});
log::debug!(
"certs loaded for {:?}",
certs.iter().map(|t| &t.0).collect::<Vec<_>>()
);
Ok(Self { certs })
}