From f200bd1bde04ff79a40c8d73df0edde2cf28493c Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Tue, 3 Feb 2026 21:49:38 +0000 Subject: Reduce log noise: change per-ref updates to DEBUG level Only the final summary 'Aligned repository with state' remains at INFO level, showing the total count of refs_created/refs_updated/refs_deleted. --- src/git/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/git/mod.rs') diff --git a/src/git/mod.rs b/src/git/mod.rs index b3fee69..1255b6f 100644 --- a/src/git/mod.rs +++ b/src/git/mod.rs @@ -253,7 +253,7 @@ pub fn update_ref(repo_path: &Path, ref_name: &str, commit_hash: &str) -> Result return Err(format!("git update-ref failed: {}", stderr)); } - info!( + debug!( "Updated ref {} to {} in {}", ref_name, commit_hash, -- cgit v1.2.3