[−][src]Struct simplelog::WriteLogger
The WriteLogger struct. Provides a Logger implementation for structs implementing Write
, e.g. File
Methods
impl<W: Write + Send + 'static> WriteLogger<W>
[src]
impl<W: Write + Send + 'static> WriteLogger<W>
pub fn init(
log_level: LevelFilter,
config: Config,
writable: W
) -> Result<(), SetLoggerError>
[src]
pub fn init(
log_level: LevelFilter,
config: Config,
writable: W
) -> Result<(), SetLoggerError>
init function. Globally initializes the WriteLogger as the one and only used log facility.
Takes the desired Level
, Config
and Write
struct as arguments. They cannot be changed later on.
Fails if another Logger was already initialized.
Examples
let _ = WriteLogger::init(LevelFilter::Info, Config::default(), File::create("my_rust_bin.log").unwrap());
pub fn new(
log_level: LevelFilter,
config: Config,
writable: W
) -> Box<WriteLogger<W>>
[src]
pub fn new(
log_level: LevelFilter,
config: Config,
writable: W
) -> Box<WriteLogger<W>>
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
, Config
and Write
struct as arguments. They cannot be changed later on.
Examples
let file_logger = WriteLogger::new(LevelFilter::Info, Config::default(), File::create("my_rust_bin.log").unwrap());
Trait Implementations
impl<W: Write + Send + 'static> SharedLogger for WriteLogger<W>
[src]
impl<W: Write + Send + 'static> SharedLogger for WriteLogger<W>
fn level(&self) -> LevelFilter
[src]
fn level(&self) -> LevelFilter
Returns the set Level for this Logger Read more
fn config(&self) -> Option<&Config>
[src]
fn config(&self) -> Option<&Config>
Inspect the config of a running Logger Read more
fn as_log(self: Box<Self>) -> Box<Log>
[src]
fn as_log(self: Box<Self>) -> Box<Log>
Returns the logger as a Log trait object
impl<W: Write + Send + 'static> Log for WriteLogger<W>
[src]
impl<W: Write + Send + 'static> Log for WriteLogger<W>
Auto Trait Implementations
impl<W> Send for WriteLogger<W>
impl<W> Send for WriteLogger<W>
impl<W> Sync for WriteLogger<W>
impl<W> Sync for WriteLogger<W>
Blanket Implementations
impl<T, U> Into for T where
U: From<T>,
[src]
impl<T, U> Into for T where
U: From<T>,
impl<T> From for T
[src]
impl<T> From for T
impl<T, U> TryFrom for T where
T: From<U>,
[src]
impl<T, U> TryFrom for T where
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
try_from
)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized,
[src]
impl<T> Borrow for T where
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
impl<T> BorrowMut for T where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
try_from
)Performs the conversion.
impl<T> Any for T where
T: 'static + ?Sized,
[src]
impl<T> Any for T where
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
fn get_type_id(&self) -> TypeId
🔬 This is a nightly-only experimental API. (get_type_id
)
this method will likely be replaced by an associated static
Gets the TypeId
of self
. Read more