pub trait OptionTrait {
// Required methods
fn get_level(&self) -> Option<LEVEL>;
fn get_format(&self) -> Option<u8>;
fn get_formatter(&self) -> Option<String>;
fn get_console(&self) -> Option<bool>;
fn get_fileoption(&self) -> Option<Box<dyn FileOption>>;
}