Skip to content

Commit dae97e3

Browse files
NickLarsenNZlabrenbe
authored andcommitted
fix: Use json file extension for log files (#647)
* fix: Use `json` file extension for log files * chore: Update changelog
1 parent ff3e85c commit dae97e3

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,13 @@
1515

1616
- Fix a bug where changes to ConfigMaps that are referenced in the HbaseCluster spec didn't trigger a reconciliation ([#645]).
1717

18+
### Fixed
19+
20+
- Use `json` file extension for log files ([#647]).
21+
1822
[#640]: https://github.com/stackabletech/hbase-operator/pull/640
1923
[#645]: https://github.com/stackabletech/airflow-operator/pull/645
24+
[#647]: https://github.com/stackabletech/hbase-operator/pull/647
2025

2126
## [25.3.0] - 2025-03-21
2227

rust/operator-binary/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ async fn main() -> anyhow::Result<()> {
9191
// TODO (@Techassi): Change to CONSOLE_LOG or FILE_LOG, create constant
9292
.with_environment_variable(ENV_VAR_CONSOLE_LOG)
9393
.with_default_level(LevelFilter::INFO)
94-
.file_log_settings_builder(log_directory, "tracing-rs.log")
94+
.file_log_settings_builder(log_directory, "tracing-rs.json")
9595
.with_rotation_period(rotation_period)
9696
.build()
9797
}))

0 commit comments

Comments
 (0)