tangled
alpha
login
or
join now
microcosm.blue
/
Allegedly
52
fork
atom
Server tools to backfill, tail, mirror, and verify PLC logs
52
fork
atom
overview
issues
4
pulls
1
pipelines
file???
bad-example.com
5 months ago
bf52dd0b
75307d6e
+4
-1
1 changed file
expand all
collapse all
unified
split
src
weekly.rs
+4
-1
src/weekly.rs
···
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:?}");
101
101
-
Ok(File::open(path).await?)
101
101
+
let file = File::open(path)
102
102
+
.await
103
103
+
.inspect_err(|e| log::error!("failed to open file: {e}"))?;
104
104
+
Ok(file)
102
105
}
103
106
}
104
107