src: Unclutter logs by switching some info messages to debug

This commit is contained in:
2024-11-25 18:04:09 +00:00
parent e951fcdf83
commit 24d824f759
3 changed files with 8 additions and 8 deletions

View File

@ -75,7 +75,7 @@ async fn main() -> anyhow::Result<()> {
};
let feed = if feed.is_none() {
info!("Sleeping for {} seconds before refreshing this feed", feed_config.delay);
debug!("Sleeping for {} seconds before refreshing this feed", feed_config.delay);
sleep(Duration::from_secs(feed_config.delay)).await;
continue;
} else {
@ -111,7 +111,7 @@ async fn main() -> anyhow::Result<()> {
debug!("State update complete");
}
info!("Sleeping for {} seconds before refreshing this feed", feed_config.delay);
debug!("Sleeping for {} seconds before refreshing this feed", feed_config.delay);
sleep(Duration::from_secs(feed_config.delay)).await;
}
})