init
This commit is contained in:
10
src/setup.rs
Normal file
10
src/setup.rs
Normal file
@@ -0,0 +1,10 @@
|
||||
// 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();
|
||||
}
|
Reference in New Issue
Block a user