feat(multibinary): initialize a basic tracing subscriber until this is changed to a directory one using tracing-appender at a later time

This commit is contained in:
J / Jacob Babich
2024-09-30 14:58:22 -04:00
parent 75952c947a
commit b2dfa6f8f1

View File

@@ -17,6 +17,9 @@ fn main() {
application_data_directory,
} = Args::parse();
#[cfg(feature = "tracing")]
tracing_subscriber::fmt::init();
match create_dir_all(&application_data_directory) {
Ok(()) => {}
Err(e) if e.kind() == ErrorKind::AlreadyExists => {}