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

why

+3 -1
+3 -1
src/backfill.rs
··· 50 50 51 51 // wait for the big backfill to finish 52 52 while let Some(res) = workers.join_next().await { 53 - res??; 53 + res 54 + .inspect_err(|e| log::error!("problem joining source workers: {e}"))? 55 + .inspect_err(|e| log::error!("problem *from* source worker: {e}"))?; 54 56 } 55 57 log::info!("finished fetching backfill in {:?}", t_step.elapsed()); 56 58 Ok(())