We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bbd9e0 commit ae2eb94Copy full SHA for ae2eb94
rust/operator-binary/src/main.rs
@@ -65,13 +65,14 @@ async fn main() -> anyhow::Result<()> {
65
APP_NAME,
66
tracing_target,
67
);
68
- stackable_operator::utils::print_startup_string(
69
- crate_description!(),
70
- crate_version!(),
71
- built_info::GIT_VERSION,
72
- built_info::TARGET,
73
- built_info::BUILT_TIME_UTC,
74
- built_info::RUSTC_VERSION,
+ tracing::info!(
+ pkg.version = crate_version!(),
+ built_info.git_version = built_info::GIT_VERSION,
+ built_info.target = built_info::TARGET,
+ built_info.built_time_utc = built_info::BUILT_TIME_UTC,
+ built_info.rustc_version = built_info::RUSTC_VERSION,
+ "Starting {description}",
75
+ description = crate_description!()
76
77
let product_config = product_config.load(&[
78
"deploy/config-spec/properties.yaml",
0 commit comments