File tree Expand file tree Collapse file tree 1 file changed +9
-8
lines changed
Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change 11mod error;
22mod system_information;
33
4- use clap:: { Parser , crate_description , crate_version } ;
4+ use clap:: Parser ;
55use stackable_operator:: telemetry:: Tracing ;
66use std:: path:: PathBuf ;
77
@@ -45,13 +45,14 @@ fn main() {
4545
4646 let init_span = tracing:: error_span!( "containerdebug init" ) . entered ( ) ;
4747
48- stackable_operator:: utils:: print_startup_string (
49- crate_description ! ( ) ,
50- crate_version ! ( ) ,
51- built_info:: GIT_VERSION ,
52- built_info:: TARGET ,
53- built_info:: BUILT_TIME_UTC ,
54- built_info:: RUSTC_VERSION ,
48+ tracing:: info!(
49+ built_info. pkg_version = built_info:: PKG_VERSION ,
50+ built_info. git_version = built_info:: GIT_VERSION ,
51+ built_info. target = built_info:: TARGET ,
52+ built_info. built_time_utc = built_info:: BUILT_TIME_UTC ,
53+ built_info. rustc_version = built_info:: RUSTC_VERSION ,
54+ "Starting {name}" ,
55+ name = built_info:: PKG_NAME
5556 ) ;
5657
5758 let mut collect_ctx = SystemInformation :: init ( ) ;
You can’t perform that action at this time.
0 commit comments