hunter/worker: adjust new posts log level

This commit is contained in:
Astro 2022-12-27 19:03:22 +01:00
parent ff9c64ec1a
commit 704b883de2
1 changed files with 1 additions and 1 deletions

View File

@ -209,7 +209,7 @@ async fn process_posts(
metrics::histogram!("hunter_post_process_seconds", t2 - t1)
}
}
tracing::info!("{}: {}/{} new posts", host, new_posts, posts_len);
tracing::trace!("{}: {}/{} new posts", host, new_posts, posts_len);
metrics::counter!("hunter_posts", new_posts, "type" => "new");
metrics::counter!("hunter_posts", posts_len, "type" => "total");
let new_post_ratio = if posts_len > 0 {