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 11use std:: sync:: Arc ;
22
3- use clap:: { crate_description , crate_version , Parser } ;
3+ use clap:: Parser ;
44use futures:: StreamExt ;
55use product_config:: ProductConfigManager ;
66use stackable_opa_operator:: crd:: { v1alpha1, OpaCluster , APP_NAME , OPERATOR_NAME } ;
@@ -77,13 +77,14 @@ async fn main() -> anyhow::Result<()> {
7777 tracing_target,
7878 ) ;
7979
80- stackable_operator:: utils:: print_startup_string (
81- crate_description ! ( ) ,
82- crate_version ! ( ) ,
83- built_info:: GIT_VERSION ,
84- built_info:: TARGET ,
85- built_info:: BUILT_TIME_UTC ,
86- built_info:: RUSTC_VERSION ,
80+ tracing:: info!(
81+ built_info. pkg_version = built_info:: PKG_VERSION ,
82+ built_info. git_version = built_info:: GIT_VERSION ,
83+ built_info. target = built_info:: TARGET ,
84+ built_info. built_time_utc = built_info:: BUILT_TIME_UTC ,
85+ built_info. rustc_version = built_info:: RUSTC_VERSION ,
86+ "Starting {description}" ,
87+ description = built_info:: PKG_DESCRIPTION
8788 ) ;
8889 let product_config = product_config. load ( & [
8990 "deploy/config-spec/properties.yaml" ,
You can’t perform that action at this time.
0 commit comments