From cd80ab16c3327312d5892ea63e17e513d32faf6e Mon Sep 17 00:00:00 2001 From: asonix Date: Mon, 11 Dec 2023 13:08:10 -0600 Subject: [PATCH] Downgrade retry warnings to debug --- src/repo/migrate.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/repo/migrate.rs b/src/repo/migrate.rs index d67d773..4545b27 100644 --- a/src/repo/migrate.rs +++ b/src/repo/migrate.rs @@ -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( break; } else { - tracing::warn!( + tracing::debug!( "Failed to migrate hash {}, retrying +{hash_failures}", hex::encode(&old_hash[..]) );