File tree 2 files changed +3
-2
lines changed
crates/stackable-operator
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -8,9 +8,10 @@ All notable changes to this project will be documented in this file.
8
8
9
9
### Added
10
10
11
- - Derive ` strum::Display ` for ` LogLevel ` ([ #805 ] ).
11
+ - Derive ` strum::Display ` for ` LogLevel ` ([ #805 ] , [ # 808 ] ).
12
12
13
13
[ #805 ] : https://github.com/stackabletech/operator-rs/pull/805
14
+ [ #808 ] : https://github.com/stackabletech/operator-rs/pull/808
14
15
15
16
## [ 0.69.0] - 2024-06-03
16
17
Original file line number Diff line number Diff line change @@ -301,6 +301,7 @@ pub struct AppenderConfig {
301
301
}
302
302
303
303
/// Log levels
304
+ // Caution: Changing the output format for strum::Display might break operators relying on this trait.
304
305
#[ derive(
305
306
Clone ,
306
307
Copy ,
@@ -316,7 +317,6 @@ pub struct AppenderConfig {
316
317
strum:: Display ,
317
318
) ]
318
319
#[ derivative( Default ) ]
319
- #[ strum( serialize_all = "lowercase" ) ]
320
320
pub enum LogLevel {
321
321
TRACE ,
322
322
DEBUG ,
You can’t perform that action at this time.
0 commit comments