Skip to content

Commit 1e88f35

Browse files
authored
Merge branch 'main' into fix/reconcile-on-configmap
2 parents cb543fc + 1a5b2be commit 1e88f35

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
@@ -17,8 +17,13 @@ All notable changes to this project will be documented in this file.
1717

1818
- Fix a bug where changes to ConfigMaps that are referenced in the KafkaCluster spec didn't trigger a reconciliation ([#844]).
1919

20+
### Fixed
21+
22+
- Use `json` file extension for log files ([#846]).
23+
2024
[#840]: https://github.com/stackabletech/kafka-operator/pull/840
2125
[#844]: https://github.com/stackabletech/kafka-operator/pull/844
26+
[#846]: https://github.com/stackabletech/kafka-operator/pull/846
2227

2328
## [25.3.0] - 2025-03-21
2429

rust/operator-binary/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ async fn main() -> anyhow::Result<()> {
104104
Settings::builder()
105105
.with_environment_variable(ENV_VAR_CONSOLE_LOG)
106106
.with_default_level(LevelFilter::INFO)
107-
.file_log_settings_builder(log_directory, "tracing-rs.log")
107+
.file_log_settings_builder(log_directory, "tracing-rs.json")
108108
.with_rotation_period(rotation_period)
109109
.build()
110110
}))

0 commit comments

Comments
 (0)