tangled
alpha
login
or
join now
ptr.pet
/
Allegedly
forked from
microcosm.blue/Allegedly
0
fork
atom
Server tools to backfill, tail, mirror, and verify PLC logs
0
fork
atom
overview
issues
pulls
pipelines
debug
bad-example.com
5 months ago
d4241eaa
fa5479bc
+1
1 changed file
expand all
collapse all
unified
split
src
weekly.rs
+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
100
+
log::debug!("opening folder source: {path:?}");
100
101
Ok(File::open(path).await?)
101
102
}
102
103
}