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 1
1
use std:: sync:: Arc ;
2
2
3
- use clap:: { crate_description , crate_version , Parser } ;
3
+ use clap:: Parser ;
4
4
use futures:: StreamExt ;
5
5
use product_config:: ProductConfigManager ;
6
6
use stackable_operator:: {
@@ -80,13 +80,14 @@ async fn main() -> anyhow::Result<()> {
80
80
APP_NAME ,
81
81
tracing_target,
82
82
) ;
83
- stackable_operator:: utils:: print_startup_string (
84
- crate_description ! ( ) ,
85
- crate_version ! ( ) ,
86
- built_info:: GIT_VERSION ,
87
- built_info:: TARGET ,
88
- built_info:: BUILT_TIME_UTC ,
89
- built_info:: RUSTC_VERSION ,
83
+ tracing:: info!(
84
+ built_info. pkg_version = built_info:: PKG_VERSION ,
85
+ built_info. git_version = built_info:: GIT_VERSION ,
86
+ built_info. target = built_info:: TARGET ,
87
+ built_info. built_time_utc = built_info:: BUILT_TIME_UTC ,
88
+ built_info. rustc_version = built_info:: RUSTC_VERSION ,
89
+ "Starting {description}" ,
90
+ description = built_info:: PKG_DESCRIPTION
90
91
) ;
91
92
let product_config = product_config. load ( & [
92
93
"deploy/config-spec/properties.yaml" ,
You can’t perform that action at this time.
0 commit comments