diff --git a/.env b/.env index 6fb6351..f9b3b94 100644 --- a/.env +++ b/.env @@ -8,5 +8,4 @@ API_TOKEN=somesecretpassword FOOTER_BLURB="Contact @asonix for inquiries" LOCAL_DOMAINS="masto.asonix.dog" LOCAL_BLURB="

Welcome to my cool relay where I have cool relay things happening. I hope you enjoy your stay!

" -RUST_LOG=info # OPENTELEMETRY_URL=http://localhost:4317 diff --git a/src/main.rs b/src/main.rs index 5045b0c..3aec493 100644 --- a/src/main.rs +++ b/src/main.rs @@ -46,7 +46,7 @@ fn init_subscriber( LogTracer::init()?; let targets: Targets = std::env::var("RUST_LOG") - .unwrap_or_else(|_| "warn".into()) + .unwrap_or_else(|_| "warn,actix_web=debug,actix_server=debug,tracing_actix_web=info".into()) .parse()?; let format_layer = tracing_subscriber::fmt::layer()