Downgrade retry warnings to debug
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
asonix 2023-12-11 13:08:10 -06:00
parent b452a577a7
commit cd80ab16c3

View file

@ -166,7 +166,7 @@ async fn migrate_hash(old_repo: ArcRepo, new_repo: ArcRepo, hash: Hash) {
break;
} else {
tracing::warn!("Failed to migrate hash {hash:?}, retrying +{hash_failures}",);
tracing::debug!("Failed to migrate hash {hash:?}, retrying +{hash_failures}");
}
}
}
@ -202,7 +202,7 @@ async fn migrate_hash_04<S: Store>(
break;
} else {
tracing::warn!(
tracing::debug!(
"Failed to migrate hash {}, retrying +{hash_failures}",
hex::encode(&old_hash[..])
);