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

setup tracing subscriber properly so it initializes log as well

ptr.pet e4f29238 bab84164

verified
+2 -1
+2 -1
src/bin/mod.rs
··· 49 49 .with(stderr_log) 50 50 .with(otel); 51 51 52 - tracing::subscriber::set_global_default(subscriber).expect("to set global tracing subscriber"); 52 + use tracing_subscriber::util::SubscriberInitExt; 53 + subscriber.init(); 53 54 } 54 55 55 56 #[allow(dead_code)]