add log for wait

This commit is contained in:
JMARyA 2024-03-09 16:49:30 +01:00
parent 2e67cce1cc
commit 5941f61c8c
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263

View file

@ -95,6 +95,10 @@ impl Module for YouTubeModule {
}
}
}
log::info!(
"Check complete. Sleeping for {} minutes...",
self.config.interval
);
std::thread::sleep(std::time::Duration::from_secs(self.config.interval * 60));
}
}