We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c2d22c commit b2dc364Copy full SHA for b2dc364
crates/stackable-operator/CHANGELOG.md
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
4
5
## [Unreleased]
6
7
+### Added
8
+
9
+- Derive `strum::Display` for `LogLevel`([#805]).
10
11
+[#805]: https://github.com/stackabletech/operator-rs/pull/805
12
13
## [0.69.0] - 2024-06-03
14
15
### Added
crates/stackable-operator/src/product_logging/spec.rs
@@ -313,8 +313,10 @@ pub struct AppenderConfig {
313
PartialEq,
314
PartialOrd,
315
Serialize,
316
+ strum::Display,
317
)]
318
#[derivative(Default)]
319
+#[strum(serialize_all = "lowercase")]
320
pub enum LogLevel {
321
TRACE,
322
DEBUG,
0 commit comments