v0.1.4-pre.014

This commit is contained in:
2026-08-16 17:03:07 +02:00
parent e0f2586400
commit 789ffb16ce
17 changed files with 771 additions and 58 deletions

View File

@@ -1,5 +1,5 @@
// file: crates/ksp-config-lib/src/management.rs
// version: 2
// version: 3
/// Raw source of one registered Config document read for explicit management/correction.
#[derive(Clone, Eq, PartialEq)]
@@ -476,6 +476,12 @@ impl LoggingFileConfig {
self.format = value.into();
}
/// Returns whether ANSI output is requested.
#[must_use]
pub const fn ansi(&self) -> bool {
return self.ansi;
}
/// Returns the output filter.
#[must_use]
pub const fn filter(&self) -> &LoggingOutputFilterConfig {