From 305da2b7d7e73604ab482e3a9bd3d56c76f76b33 Mon Sep 17 00:00:00 2001 From: Rahix Date: Fri, 17 Oct 2025 12:50:31 +0200 Subject: [PATCH] Make logs less noisy Don't emit log messages about issues with no changes. --- techtree-manager/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/techtree-manager/src/main.rs b/techtree-manager/src/main.rs index 9d6caff..b593511 100644 --- a/techtree-manager/src/main.rs +++ b/techtree-manager/src/main.rs @@ -146,7 +146,7 @@ async fn run() -> anyhow::Result<()> { .with_context(|| format!("Failed to find or make bot comment in issue #{issue}"))?; if bot_comment.body.contains(&hash) { - log::info!("Issue #{issue} is up-to-date, not editing comment."); + log::debug!("Issue #{issue} is up to date, not editing comment."); issue::remove_stale_label(&ctx, issue) .await .with_context(|| format!("Failed to remove `Stale` label from issue #{issue}"))?;