pub trait DynamicLogging {
type Error;
// Required methods
fn init_stdout(&self) -> Result<(), Self::Error>;
fn init_filelogger(&self) -> Result<(), Self::Error>;
}
pub trait DynamicLogging {
type Error;
// Required methods
fn init_stdout(&self) -> Result<(), Self::Error>;
fn init_filelogger(&self) -> Result<(), Self::Error>;
}