Struct simplelog::CombinedLogger [−][src]
The CombinedLogger struct. Provides a Logger implementation that proxies multiple Loggers as one.
The purpose is to allow multiple Loggers to be set globally
Implementations
impl CombinedLogger[src]
pub fn init(logger: Vec<Box<dyn SharedLogger>>) -> Result<(), SetLoggerError>[src]
init function. Globally initializes the CombinedLogger as the one and only used log facility.
Takes all used Loggers as a Vector argument. None of those Loggers should already be set globally.
All loggers need to implement log::Log and logger::SharedLogger and need to provide a way to be
initialized without calling set_logger. All loggers of this library provide a `new(..)`` method
for that purpose.
Fails if another logger is already set globally.
Examples
let _ = CombinedLogger::init( vec![ TermLogger::new(LevelFilter::Info, Config::default(), TerminalMode::Mixed, ColorChoice::Auto), WriteLogger::new(LevelFilter::Info, Config::default(), File::create("my_rust_bin.log").unwrap()) ] );
pub fn new(logger: Vec<Box<dyn SharedLogger>>) -> Box<CombinedLogger>[src]
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 all used loggers as a Vector argument. The log level is automatically determined by the lowest log level used by the given loggers.
All loggers need to implement log::Log.
Examples
let combined_logger = CombinedLogger::new( vec![ TermLogger::new(LevelFilter::Debug, Config::default(), TerminalMode::Mixed, ColorChoice::Auto), WriteLogger::new(LevelFilter::Info, Config::default(), File::create("my_rust_bin.log").unwrap()) ] );
Trait Implementations
impl Log for CombinedLogger[src]
fn enabled(&self, metadata: &Metadata<'_>) -> bool[src]
fn log(&self, record: &Record<'_>)[src]
fn flush(&self)[src]
impl SharedLogger for CombinedLogger[src]
Auto Trait Implementations
impl !RefUnwindSafe for CombinedLogger
impl Send for CombinedLogger
impl Sync for CombinedLogger
impl Unpin for CombinedLogger
impl !UnwindSafe for CombinedLogger
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,