upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/src/git/mod.rs
diff options
context:
space:
mode:
authorDanConwayDev <DanConwayDev@protonmail.com>2026-02-03 21:49:38 +0000
committerDanConwayDev <DanConwayDev@protonmail.com>2026-02-03 21:49:38 +0000
commitf200bd1bde04ff79a40c8d73df0edde2cf28493c (patch)
treed9b18ed3833b7e40daf1d5d43646eab9d5aba84b /src/git/mod.rs
parentd392f0bc14bcd687e918d4653ae016226496b4c4 (diff)
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.
Diffstat (limited to 'src/git/mod.rs')
-rw-r--r--src/git/mod.rs2
1 files changed, 1 insertions, 1 deletions
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
253 return Err(format!("git update-ref failed: {}", stderr)); 253 return Err(format!("git update-ref failed: {}", stderr));
254 } 254 }
255 255
256 info!( 256 debug!(
257 "Updated ref {} to {} in {}", 257 "Updated ref {} to {} in {}",
258 ref_name, 258 ref_name,
259 commit_hash, 259 commit_hash,