#[derive(Debug, Clone, Default, PartialEq, Eq)]
pub struct LogConfig {
pub raw_measurements: bool,
pub measurements: bool,
pub selection: bool,
pub statistics: bool,
pub tracking: bool,
pub rtc: bool,
pub refclocks: bool,
pub tempcomp: bool,
}
#[derive(Debug, Clone, PartialEq)]
pub struct LogBannerConfig { pub limit: u32 }
#[derive(Debug, Clone, PartialEq)]
pub struct LogChangeConfig { pub threshold: f64 }
#[derive(Debug, Clone, PartialEq)]
pub struct LogDirConfig { pub directory: String }