pub struct TermLogger { /* private fields */ }
Expand description
The TermLogger struct. Provides a stderr/out based Logger implementation
Supports colored output
Implementations§
Source§impl TermLogger
impl TermLogger
Sourcepub fn init(
log_level: LevelFilter,
config: Config,
mode: TerminalMode,
color_choice: ColorChoice,
) -> Result<(), SetLoggerError>
pub fn init( log_level: LevelFilter, config: Config, mode: TerminalMode, color_choice: ColorChoice, ) -> Result<(), SetLoggerError>
init function. Globally initializes the TermLogger 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
TermLogger::init(
LevelFilter::Info,
Config::default(),
TerminalMode::Mixed,
ColorChoice::Auto
);
Sourcepub fn new(
log_level: LevelFilter,
config: Config,
mode: TerminalMode,
color_choice: ColorChoice,
) -> Box<TermLogger>
pub fn new( log_level: LevelFilter, config: Config, mode: TerminalMode, color_choice: ColorChoice, ) -> Box<TermLogger>
allows to create a new logger, that can be independently used, no matter whats 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.
Returns a Box
ed TermLogger
§Examples
let term_logger = TermLogger::new(
LevelFilter::Info,
Config::default(),
TerminalMode::Mixed,
ColorChoice::Auto
);
Trait Implementations§
Source§impl Log for TermLogger
impl Log for TermLogger
Auto Trait Implementations§
impl !Freeze for TermLogger
impl RefUnwindSafe for TermLogger
impl Send for TermLogger
impl Sync for TermLogger
impl Unpin for TermLogger
impl UnwindSafe for TermLogger
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