Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@ All notable changes to this project will be documented in this file.
and is now set by `ROLLING_LOGS` (or via `--rolling-logs <DIRECTORY>`).
- Replace stackable-operator `print_startup_string` with `tracing::info!` with fields.

### Fixed

- Use `json` file extension for log files ([#932]).

[#927]: https://github.com/stackabletech/zookeeper-operator/pull/927
[#932]: https://github.com/stackabletech/zookeeper-operator/pull/932

## [25.3.0] - 2025-03-21

Expand Down
2 changes: 1 addition & 1 deletion rust/operator-binary/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ async fn main() -> anyhow::Result<()> {
Settings::builder()
.with_environment_variable(ENV_VAR_CONSOLE_LOG)
.with_default_level(LevelFilter::INFO)
.file_log_settings_builder(log_directory, "tracing-rs.log")
.file_log_settings_builder(log_directory, "tracing-rs.json")
.with_rotation_period(rotation_period)
.build()
}))
Expand Down