fingerd: demote local email parsing logs to trace level
Build and test / check (push) Successful in 1m4s
Build and test / build (push) Successful in 1m31s
Build and test / test (push) Successful in 1m52s
Build and test / docs (push) Successful in 4m6s

This commit is contained in:
2026-04-29 06:03:42 +09:00
parent a3aae2b28b
commit ff38ea3a35
+3 -3
View File
@@ -18,14 +18,14 @@ pub fn detect_new_mail_for_user(
];
for path in mail_storage_paths {
tracing::debug!("Checking for mail at path: {}", path.display());
tracing::trace!("Checking for mail at path: {}", path.display());
if path.is_dir() && path.join("new").is_dir() && path.join("cur").is_dir() {
tracing::debug!("Detected maildir structure at path: {}", path.display());
tracing::trace!("Detected maildir structure at path: {}", path.display());
if let Ok(status) = detect_new_mail_by_maildir(&path) {
return Ok(Some(status));
}
} else if path.is_file() {
tracing::debug!("Detected mailbox file at path: {}", path.display());
tracing::trace!("Detected mailbox file at path: {}", path.display());
if let Ok(status) = detect_new_mail_by_mailbox(&path) {
return Ok(Some(status));
}