chore(cli-clap): or at least I hope chore is the right conventional commit type to use - switch println! to a tracing invocation (to verify that the tracing infrastructure works)

This commit is contained in:
J / Jacob Babich
2024-09-30 15:18:34 -04:00
parent b2dfa6f8f1
commit b5e11f2c7f

View File

@@ -1,3 +1,4 @@
pub fn main() {
println!("Hello, world!");
#[cfg(feature = "tracing")]
tracing::info!("Hello, world!");
}