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
setup tracing subscriber properly so it initializes log as well
ptr.pet
1 week ago
e4f29238
bab84164
verified
This commit was signed with the committer's
known signature
.
ptr.pet
SSH Key Fingerprint:
SHA256:Abmvag+juovVufZTxyWY8KcVgrznxvBjQpJesv071Aw=
+2
-1
1 changed file
expand all
collapse all
unified
split
src
bin
mod.rs
+2
-1
src/bin/mod.rs
···
49
49
.with(stderr_log)
50
50
.with(otel);
51
51
52
52
-
tracing::subscriber::set_global_default(subscriber).expect("to set global tracing subscriber");
52
52
+
use tracing_subscriber::util::SubscriberInitExt;
53
53
+
subscriber.init();
53
54
}
54
55
55
56
#[allow(dead_code)]