Skip to content

Commit 593152e

Browse files
committed
Merge remote-tracking branch 'origin/main' into fix/vector-aggregator-env-var
2 parents 2efd6db + b1295ef commit 593152e

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,13 @@ All notable changes to this project will be documented in this file.
1313
- BREAKING: Inject the vector aggregator address into the vector config using the env var `VECTOR_AGGREGATOR_ADDRESS` instead
1414
of having the operator write it to the vector config ([#933]).
1515

16+
### Fixed
17+
18+
- Use `json` file extension for log files ([#932]).
19+
1620
[#927]: https://github.com/stackabletech/zookeeper-operator/pull/927
1721
[#933]: https://github.com/stackabletech/zookeeper-operator/pull/XXX
22+
[#932]: https://github.com/stackabletech/zookeeper-operator/pull/932
1823

1924
## [25.3.0] - 2025-03-21
2025

rust/operator-binary/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ async fn main() -> anyhow::Result<()> {
8989
Settings::builder()
9090
.with_environment_variable(ENV_VAR_CONSOLE_LOG)
9191
.with_default_level(LevelFilter::INFO)
92-
.file_log_settings_builder(log_directory, "tracing-rs.log")
92+
.file_log_settings_builder(log_directory, "tracing-rs.json")
9393
.with_rotation_period(rotation_period)
9494
.build()
9595
}))

0 commit comments

Comments
 (0)