Skip to content

Commit 8acadff

Browse files
committed
merge main
2 parents 6146593 + dac79c9 commit 8acadff

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
@@ -13,8 +13,13 @@
1313
(or via `--rolling-logs <DIRECTORY>`).
1414
- Replace stackable-operator `print_startup_string` with `tracing::info!` with fields.
1515

16+
### Fixed
17+
18+
- Use `json` file extension for log files ([#647]).
19+
1620
[#639]: https://github.com/stackabletech/hbase-operator/pull/639
1721
[#640]: https://github.com/stackabletech/hbase-operator/pull/640
22+
[#647]: https://github.com/stackabletech/hbase-operator/pull/647
1823

1924
## [25.3.0] - 2025-03-21
2025

rust/operator-binary/src/main.rs

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

0 commit comments

Comments
 (0)