diff --git a/CHANGELOG.md b/CHANGELOG.md index 5fe1dfa0..aa6870e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,12 @@ All notable changes to this project will be documented in this file. (or via `--rolling-logs `). - Replace stackable-operator `print_startup_string` with `tracing::info!` with fields. +### Fixed + +- Use `json` file extension for log files ([#667]). + [#661]: https://github.com/stackabletech/hdfs-operator/pull/661 +[#667]: https://github.com/stackabletech/hdfs-operator/pull/667 ## [25.3.0] - 2025-03-21 diff --git a/rust/operator-binary/src/main.rs b/rust/operator-binary/src/main.rs index 6ffc325a..8eddb4c1 100644 --- a/rust/operator-binary/src/main.rs +++ b/rust/operator-binary/src/main.rs @@ -95,7 +95,7 @@ async fn main() -> anyhow::Result<()> { // TODO (@Techassi): Change to CONSOLE_LOG or FILE_LOG, create constant .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() }))