[][src]Struct astrolog::logger::Logger

pub struct Logger { /* fields omitted */ }

Methods

impl Logger[src]

pub fn new() -> Logger[src]

pub fn into_rc(self) -> Rc<Logger>[src]

pub fn into_arc(self) -> Arc<Logger>[src]

pub fn set_print_errors(&mut self, print_errors: bool) -> &mut Self[src]

pub fn print_errors(self, print_errors: bool) -> Self[src]

pub fn push_handler<T>(&mut self, handler: T) -> &mut Self where
    T: Handler + Sync + Send + 'static, 
[src]

pub fn with_handler<T>(self, handler: T) -> Self where
    T: Handler + Sync + Send + 'static, 
[src]

pub fn set_global<V>(&mut self, k: &str, v: V) -> &mut Self where
    V: Serialize
[src]

pub fn with_global<V>(self, k: &str, v: V) -> Self where
    V: Serialize
[src]

pub fn make_sync(&mut self) -> &mut Self[src]

pub fn sync(self) -> Self[src]

pub fn make_async(&mut self) -> &mut Self[src]

pub fn async(self) -> Self[src]

pub fn with<V>(&self, k: &str, v: V) -> Item where
    V: Serialize
[src]

pub fn with_multi<V: Into<Context>>(&self, ctx: V) -> Item[src]

pub fn with_error(&self, e: &dyn Error) -> Item[src]

pub fn with_new_context(&self, ctx: Context) -> Item[src]

pub fn log<S: ToString>(&self, level: Level, msg: S)[src]

pub fn trace<S: ToString>(&self, msg: S)[src]

pub fn profile<S: ToString>(&self, msg: S)[src]

pub fn debug<S: ToString>(&self, msg: S)[src]

pub fn info<S: ToString>(&self, msg: S)[src]

pub fn notice<S: ToString>(&self, msg: S)[src]

pub fn warning<S: ToString>(&self, msg: S)[src]

pub fn error<S: ToString>(&self, msg: S)[src]

pub fn critical<S: ToString>(&self, msg: S)[src]

pub fn alert<S: ToString>(&self, msg: S)[src]

pub fn emergency<S: ToString>(&self, msg: S)[src]

Trait Implementations

impl LevelAware for Logger[src]

fn with_levels(self, levels: &[Level]) -> Self where
    Self: Sized
[src]

fn set_levels_range(&mut self, from: Level, to: Level) -> &mut Self[src]

fn with_levels_range(self, from: Level, to: Level) -> Self where
    Self: Sized
[src]

impl Debug for Logger[src]

Auto Trait Implementations

impl Send for Logger

impl Sync for Logger

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.