Skip to content

Commit cc570fe

Browse files
Update crates/stackable-operator/src/utils/cluster_domain.rs
Co-authored-by: Techassi <[email protected]>
1 parent abf10f9 commit cc570fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/stackable-operator/src/utils/cluster_domain.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ pub(crate) fn retrieve_cluster_domain() -> Result<DomainName, Error> {
6262

6363
match env::var(KUBERNETES_CLUSTER_DOMAIN_ENV) {
6464
Ok(cluster_domain) if !cluster_domain.is_empty() => {
65-
tracing::info!("Using Kubernetes cluster domain: '{cluster_domain}'");
65+
tracing::info!(cluster_domain, "Kubernetes cluster domain set by environment variable");
6666
return DomainName::from_str(&cluster_domain)
6767
.context(ParseDomainNameSnafu { cluster_domain });
6868
}

0 commit comments

Comments
 (0)