Make logs less noisy
All checks were successful
/ build (push) Successful in 1m5s

Don't emit log messages about issues with no changes.
This commit is contained in:
Rahix 2025-10-17 12:50:31 +02:00
parent c8b848d89b
commit 305da2b7d7

View file

@ -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}"))?;