mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-12-22 19:31:35 +00:00
Downgrade retry warnings to debug
This commit is contained in:
parent
b452a577a7
commit
cd80ab16c3
1 changed files with 2 additions and 2 deletions
|
@ -166,7 +166,7 @@ async fn migrate_hash(old_repo: ArcRepo, new_repo: ArcRepo, hash: Hash) {
|
||||||
|
|
||||||
break;
|
break;
|
||||||
} else {
|
} 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;
|
break;
|
||||||
} else {
|
} else {
|
||||||
tracing::warn!(
|
tracing::debug!(
|
||||||
"Failed to migrate hash {}, retrying +{hash_failures}",
|
"Failed to migrate hash {}, retrying +{hash_failures}",
|
||||||
hex::encode(&old_hash[..])
|
hex::encode(&old_hash[..])
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue