Cargo fmt

This commit is contained in:
Cameron
2025-12-18 21:20:31 -05:00
parent aaf9cc64be
commit b4c5a38c9d
5 changed files with 32 additions and 23 deletions

View File

@@ -1,6 +1,6 @@
use crate::database::{ExifDao, FavoriteDao};
use crate::tags::TagDao;
use anyhow::{Context, Result};
use anyhow::Result;
use log::{error, info};
use opentelemetry;
use std::sync::{Arc, Mutex};
@@ -39,10 +39,7 @@ impl DatabaseUpdater {
success_count += 1;
}
Err(e) => {
error!(
"Failed to update tagged_photo for {}: {:?}",
old_path, e
);
error!("Failed to update tagged_photo for {}: {:?}", old_path, e);
error_count += 1;
}
}