Files
open-web-agent-rs/src/setup.rs
geoffsee 66d3c06230 init
2025-05-23 09:48:26 -04:00

10 lines
250 B
Rust

// src/setup.rs
pub fn init_logging() {
tracing_subscriber::fmt()
.with_max_level(tracing::Level::DEBUG)
.with_target(true)
.with_thread_ids(true)
.with_file(true)
.with_line_number(true)
.init();
}