10 lines
250 B
Rust
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();
|
|
} |