Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
marlonbaeten committed Feb 15, 2024
1 parent a68d318 commit ab3fe05
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion backend/src/smtp/tls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ async fn load_certs<'a>() -> Option<Vec<CertificateDer<'a>>> {
if certs.is_empty() {
None
} else {
info!("Certificate loaded from disk:\n{}", String::from_utf8_lossy(&pem_bytes));
info!(
"Certificate loaded from disk:\n{}",
String::from_utf8_lossy(&pem_bytes)
);

Some(certs)
}
Expand Down

0 comments on commit ab3fe05

Please sign in to comment.