Server tools to backfill, tail, mirror, and verify PLC logs

inspect folder err

+1
+1
src/bin/allegedly.rs
··· 183 log::info!("Reading weekly bundles from local folder {dir:?}"); 184 backfill(FolderSource(dir), tx, source_workers.unwrap_or(1), until) 185 .await 186 .expect("to source bundles from a folder"); 187 } else { 188 log::info!("Fetching weekly bundles from from {http}");
··· 183 log::info!("Reading weekly bundles from local folder {dir:?}"); 184 backfill(FolderSource(dir), tx, source_workers.unwrap_or(1), until) 185 .await 186 + .inspect_err(|e| log::error!("backfill from folder problem: {e}")) 187 .expect("to source bundles from a folder"); 188 } else { 189 log::info!("Fetching weekly bundles from from {http}");