diff --git a/src/repo.rs b/src/repo.rs index 5fa8436..b075866 100644 --- a/src/repo.rs +++ b/src/repo.rs @@ -653,7 +653,10 @@ where } let Some(main_identifier) = repo.identifier::(hash.clone()).await? else { - tracing::warn!("Missing identifier for hash {}, queueing cleanup", hex::encode(&hash)); + tracing::warn!( + "Missing identifier for hash {}, queueing cleanup", + hex::encode(&hash) + ); crate::queue::cleanup_hash(repo, hash.clone()).await?; return Err(RepoError::Missing("hash -> identifier").into()); };