Reduced connection timeouts and added some logging

This commit is contained in:
Neshura 2024-05-06 22:21:04 +02:00
parent 22bbaaa002
commit cd78d3c1c7
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C
3 changed files with 6 additions and 4 deletions

View file

@ -102,6 +102,8 @@ pub(crate) async fn run() {
let series = config.series.clone();
for series in series {
let info_msg = format!("Handling Series {}", series.slug);
info!(info_msg);
if handle_series(&series, &communities, &lemmy, &config, &mut post_history)
.await
.is_err()