From ab3fe05757ea7e9579cf5e3866868dec2c75a59e Mon Sep 17 00:00:00 2001 From: Marlon Baeten Date: Thu, 15 Feb 2024 10:42:17 +0100 Subject: [PATCH] Fix formatting --- backend/src/smtp/tls.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/backend/src/smtp/tls.rs b/backend/src/smtp/tls.rs index 075732e..6ea4f9b 100644 --- a/backend/src/smtp/tls.rs +++ b/backend/src/smtp/tls.rs @@ -25,7 +25,10 @@ async fn load_certs<'a>() -> Option>> { 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) }