Skip to content

Commit c558b0b

Browse files
authored
fix: Use json file extension for log files (#607)
* fix: Use `json` file extension for log files * chore: Update changelog
1 parent cd9eafa commit c558b0b

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
@@ -9,7 +9,12 @@
99
(or via `--rolling-logs <DIRECTORY>`).
1010
- Replace stackable-operator `print_startup_string` with `tracing::info!` with fields.
1111

12+
### Fixed
13+
14+
- Use `json` file extension for log files ([#607]).
15+
1216
[#601]: https://github.com/stackabletech/airflow-operator/pull/601
17+
[#607]: https://github.com/stackabletech/airflow-operator/pull/607
1318

1419
## [25.3.0] - 2025-03-21
1520

rust/operator-binary/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ async fn main() -> anyhow::Result<()> {
8888
// TODO (@Techassi): Change to CONSOLE_LOG or FILE_LOG, create constant
8989
.with_environment_variable(ENV_VAR_CONSOLE_LOG)
9090
.with_default_level(LevelFilter::INFO)
91-
.file_log_settings_builder(log_directory, "tracing-rs.log")
91+
.file_log_settings_builder(log_directory, "tracing-rs.json")
9292
.with_rotation_period(rotation_period)
9393
.build()
9494
}))

0 commit comments

Comments
 (0)