src: Unclutter logs by switching some info messages to debug
This commit is contained in:
@ -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;
|
||||
}
|
||||
})
|
||||
|
Reference in New Issue
Block a user