v0.1.4-pre.015

This commit is contained in:
2026-08-16 17:38:23 +02:00
parent 789ffb16ce
commit d7185905d8
17 changed files with 1124 additions and 305 deletions

View File

@@ -1,5 +1,5 @@
// file: crates/ksp-config-lib/src/management.rs
// version: 3
// version: 4
/// Raw source of one registered Config document read for explicit management/correction.
#[derive(Clone, Eq, PartialEq)]
@@ -482,6 +482,11 @@ impl LoggingFileConfig {
return self.ansi;
}
/// Sets whether ANSI output is requested. Persistence validation currently requires persistent file ANSI to remain disabled.
pub fn set_ansi(&mut self, value: bool) {
self.ansi = value;
}
/// Returns the output filter.
#[must_use]
pub const fn filter(&self) -> &LoggingOutputFilterConfig {