From 0ccf7f8971421511685c7328e6d75eabf9ac1719 Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Tue, 27 Jan 2026 18:39:48 -0300 Subject: [PATCH] chore: Set default internal log level to trace --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index bf947f3f8..165befa2b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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("info"); + botlib::logging::init_compact_logger_with_style("trace"); println!("Starting General Bots {}...", env!("CARGO_PKG_VERSION")); }