File tree Expand file tree Collapse file tree 4 files changed +8
-3
lines changed Expand file tree Collapse file tree 4 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,12 @@ All notable changes to this project will be documented in this file.
19
19
and is now set by ` ROLLING_LOGS ` (or via ` --rolling-logs <DIRECTORY> ` ).
20
20
- Replace stackable-operator ` print_startup_string ` with ` tracing::info! ` with fields.
21
21
22
+ ### Fixed
23
+
24
+ - Use ` json ` file extension for log files ([ #709 ] ).
25
+
22
26
[ #703 ] : https://github.com/stackabletech/opa-operator/pull/703
27
+ [ #709 ] : https://github.com/stackabletech/opa-operator/pull/709
23
28
24
29
## [ 25.3.0] - 2025-03-21
25
30
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ async fn main() -> Result<(), StartupError> {
109
109
Settings :: builder ( )
110
110
. with_environment_variable ( ENV_VAR_CONSOLE_LOG )
111
111
. with_default_level ( LevelFilter :: INFO )
112
- . file_log_settings_builder ( log_directory, "tracing-rs.log " )
112
+ . file_log_settings_builder ( log_directory, "tracing-rs.json " )
113
113
. with_rotation_period ( rotation_period)
114
114
. build ( )
115
115
} ) ,
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ async fn main() -> anyhow::Result<()> {
98
98
Settings :: builder ( )
99
99
. with_environment_variable ( ENV_VAR_CONSOLE_LOG )
100
100
. with_default_level ( LevelFilter :: INFO )
101
- . file_log_settings_builder ( log_directory, "tracing-rs.log " )
101
+ . file_log_settings_builder ( log_directory, "tracing-rs.json " )
102
102
. with_rotation_period ( rotation_period)
103
103
. build ( )
104
104
} ) )
Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ async fn main() -> Result<(), StartupError> {
126
126
Settings :: builder ( )
127
127
. with_environment_variable ( ENV_VAR_CONSOLE_LOG )
128
128
. with_default_level ( LevelFilter :: INFO )
129
- . file_log_settings_builder ( log_directory, "tracing-rs.log " )
129
+ . file_log_settings_builder ( log_directory, "tracing-rs.json " )
130
130
. with_rotation_period ( rotation_period)
131
131
. build ( )
132
132
} ) ,
You can’t perform that action at this time.
0 commit comments