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

debug

+1
+1
src/weekly.rs
··· 97 97 async fn reader_for(&self, week: Week) -> anyhow::Result<impl AsyncRead> { 98 98 let FolderSource(dir) = self; 99 99 let path = dir.join(format!("{}.jsonl.gz", week.0)); 100 + log::debug!("opening folder source: {path:?}"); 100 101 Ok(File::open(path).await?) 101 102 } 102 103 }