chore: Set default internal log level to trace

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2026-01-27 18:37:21 -03:00
parent 497d0dd18c
commit bb8b35d885

View file

@ -1,4 +1,3 @@
use log::info; use log::info;
use std::net::SocketAddr; use std::net::SocketAddr;
@ -6,7 +5,7 @@ mod shared;
mod ui_server; mod ui_server;
fn init_logging() { fn init_logging() {
botlib::logging::init_compact_logger("info"); botlib::logging::init_compact_logger("trace");
} }
fn get_port() -> u16 { fn get_port() -> u16 {