From a51e3a07587754fa8f64126057bf0c454809fc29 Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Tue, 27 Jan 2026 18:45:41 -0300 Subject: [PATCH] chore: Set default RUST_LOG to info and revert logger init to info --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 165befa2b..990990dc5 100644 --- a/src/main.rs +++ b/src/main.rs @@ -887,7 +887,7 @@ async fn main() -> std::io::Result<()> { let rust_log = match std::env::var("RUST_LOG") { Ok(existing) if !existing.is_empty() => format!("{},{}", existing, noise_filters), - _ => noise_filters.to_string(), + _ => format!("info,{}", noise_filters), }; std::env::set_var("RUST_LOG", &rust_log); @@ -897,7 +897,7 @@ async fn main() -> std::io::Result<()> { use crate::llm::local::ensure_llama_servers_running; if no_console || no_ui { - botlib::logging::init_compact_logger_with_style("trace"); + botlib::logging::init_compact_logger_with_style("info"); println!("Starting General Bots {}...", env!("CARGO_PKG_VERSION")); }