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

Configure Feed

Select the types of activity you want to include in your feed.

debug

phil d4241eaa fa5479bc

+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 }