File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -23,8 +23,13 @@ All notable changes to this project will be documented in this file.
23
23
and is now set by ` ROLLING_LOGS ` (or via ` --rolling-logs <DIRECTORY> ` ).
24
24
- Replace stackable-operator ` print_startup_string ` with ` tracing::info! ` with fields.
25
25
26
+ ### Fixed
27
+
28
+ - Use ` json ` file extension for log files ([ #586 ] ).
29
+
26
30
[ #572 ] : https://github.com/stackabletech/secret-operator/pull/572
27
31
[ #581 ] : https://github.com/stackabletech/secret-operator/pull/581
32
+ [ #586 ] : https://github.com/stackabletech/secret-operator/pull/586
28
33
29
34
## [ 25.3.0] - 2025-03-21
30
35
Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ async fn main() -> Result<()> {
115
115
Settings :: builder ( )
116
116
. with_environment_variable ( ENV_VAR_CONSOLE_LOG )
117
117
. with_default_level ( LevelFilter :: INFO )
118
- . file_log_settings_builder ( log_directory, "tracing-rs.log " )
118
+ . file_log_settings_builder ( log_directory, "tracing-rs.json " )
119
119
. with_rotation_period ( rotation_period)
120
120
. build ( )
121
121
} ) )
Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ async fn main() -> anyhow::Result<()> {
106
106
Settings :: builder ( )
107
107
. with_environment_variable ( ENV_VAR_CONSOLE_LOG )
108
108
. with_default_level ( LevelFilter :: INFO )
109
- . file_log_settings_builder ( log_directory, "tracing-rs.log " )
109
+ . file_log_settings_builder ( log_directory, "tracing-rs.json " )
110
110
. with_rotation_period ( rotation_period)
111
111
. build ( )
112
112
} ) )
You can’t perform that action at this time.
0 commit comments