Skip to content

Commit d6e935c

Browse files
authored
fix: Use json file extension for log files (#343)
* fix: Use `json` file extension for log files * chore: Update changelog
1 parent 078598d commit d6e935c

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
@@ -11,7 +11,12 @@ All notable changes to this project will be documented in this file.
1111
and is now set by `ROLLING_LOGS` (or via `--rolling-logs <DIRECTORY>`).
1212
- Replace stackable-operator `print_startup_string` with `tracing::info!` with fields.
1313

14+
### Fixed
15+
16+
- Use `json` file extension for log files ([#343]).
17+
1418
[#338]: https://github.com/stackabletech/commons-operator/pull/338
19+
[#343]: https://github.com/stackabletech/commons-operator/pull/343
1520

1621
## [25.3.0] - 2025-03-21
1722

rust/operator-binary/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ async fn main() -> anyhow::Result<()> {
6565
Settings::builder()
6666
.with_environment_variable(ENV_VAR_CONSOLE_LOG)
6767
.with_default_level(LevelFilter::INFO)
68-
.file_log_settings_builder(log_directory, "tracing-rs.log")
68+
.file_log_settings_builder(log_directory, "tracing-rs.json")
6969
.with_rotation_period(rotation_period)
7070
.build()
7171
}))

0 commit comments

Comments
 (0)