notify: add missing tracing::error macro import
authorWolfgang Bumiller <w.bumiller@proxmox.com>
Tue, 7 Jan 2025 09:20:37 +0000 (10:20 +0100)
committerWolfgang Bumiller <w.bumiller@proxmox.com>
Tue, 7 Jan 2025 09:20:37 +0000 (10:20 +0100)
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
proxmox-notify/src/endpoints/smtp.rs

index 6bb2d2d0c3e78e44e9151c48a98db6b7820ecdf3..b88e6c956fc5ced9809099f8356bb216d0d3179d 100644 (file)
@@ -254,6 +254,7 @@ impl Endpoint for SmtpEndpoint {
             Content::ForwardedMail { ref raw, title, .. } => {
                 use lettre::message::header::ContentTransferEncoding;
                 use lettre::message::Body;
+                use tracing::error;
 
                 let parsed_message = mail_parser::Message::parse(raw)
                     .ok_or_else(|| Error::Generic("could not parse forwarded email".to_string()))?;