pub struct SimpleLogger { /* private fields */ }
Expand description
The SimpleLogger struct. Provides a very basic Logger implementation
Implementations§
Source§impl SimpleLogger
impl SimpleLogger
Sourcepub fn init(
log_level: LevelFilter,
config: Config,
) -> Result<(), SetLoggerError>
pub fn init( log_level: LevelFilter, config: Config, ) -> Result<(), SetLoggerError>
init function. Globally initializes the SimpleLogger as the one and only used log facility.
Takes the desired Level
and Config
as arguments. They cannot be changed later on.
Fails if another Logger was already initialized.
§Examples
let _ = SimpleLogger::init(LevelFilter::Info, Config::default());
Sourcepub fn new(log_level: LevelFilter, config: Config) -> Box<SimpleLogger>
pub fn new(log_level: LevelFilter, config: Config) -> Box<SimpleLogger>
allows to create a new logger, that can be independently used, no matter what is globally set.
no macros are provided for this case and you probably
dont want to use this function, but init()
, if you dont want to build a CombinedLogger
.
Takes the desired Level
and Config
as arguments. They cannot be changed later on.
§Examples
let simple_logger = SimpleLogger::new(LevelFilter::Info, Config::default());
Trait Implementations§
Source§impl Log for SimpleLogger
impl Log for SimpleLogger
Auto Trait Implementations§
impl !Freeze for SimpleLogger
impl RefUnwindSafe for SimpleLogger
impl Send for SimpleLogger
impl Sync for SimpleLogger
impl Unpin for SimpleLogger
impl UnwindSafe for SimpleLogger
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more