1
0
mirror of https://github.com/NLnetLabs/routinator.git synced 2024-05-19 06:50:04 +00:00

Merge pull request #220 from NLnetLabs/no-bad-certificiate

Silence the BadCertificate log warning.
This commit is contained in:
Martin Hoffmann
2019-09-12 16:50:20 +02:00
committed by GitHub

View File

@ -823,6 +823,7 @@ impl Config {
}; };
let dispatch = dispatch let dispatch = dispatch
.level(self.log_level) .level(self.log_level)
.level_for("rustls", LevelFilter::Error)
.chain(io::stderr()) .chain(io::stderr())
.into_log().1; .into_log().1;
Ok(dispatch) Ok(dispatch)