We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0243fdd commit 9770bebCopy full SHA for 9770beb
rust/operator-binary/src/main.rs
@@ -27,6 +27,11 @@ async fn main() -> anyhow::Result<()> {
27
watch_namespace: _,
28
tracing_target,
29
}) => {
30
+ stackable_operator::logging::initialize_logging(
31
+ "COMMONS_OPERATOR_LOG",
32
+ "commons",
33
+ tracing_target,
34
+ );
35
stackable_operator::utils::print_startup_string(
36
built_info::PKG_DESCRIPTION,
37
built_info::PKG_VERSION,
@@ -35,11 +40,6 @@ async fn main() -> anyhow::Result<()> {
40
built_info::BUILT_TIME_UTC,
41
built_info::RUSTC_VERSION,
42
);
38
- stackable_operator::logging::initialize_logging(
39
- "COMMONS_OPERATOR_LOG",
- "commons",
- tracing_target,
- );
43
44
let client = stackable_operator::client::create_client(Some(
45
"commons.stackable.tech".to_string(),
0 commit comments