From f3b49fb32df4a3507c9bec43d93267cdb69730ea Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Sun, 27 Aug 2023 16:19:41 +0200 Subject: [PATCH] fix default RUST_LOG --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 9461596..8d07692 100644 --- a/src/main.rs +++ b/src/main.rs @@ -58,7 +58,7 @@ pub struct DomainProvider { #[tokio::main] async fn main() { if std::env::var("RUST_LOG").is_err() { - std::env::set_var("RUST_LOG", "tricot=info") + std::env::set_var("RUST_LOG", "d53=info") } tracing_subscriber::fmt() .with_writer(std::io::stderr)