Struct cortex_m_log::log::Logger[][src]

pub struct Logger<P: Printer + Send + Sync> {
    pub inner: P,
    pub level: LevelFilter,
}

Simple Logger implementation

Fields

Printer implementation

Log level

Trait Implementations

impl<P: Printer + Send + Sync> Log for Logger<P>
[src]

Determines if a log message with the specified metadata would be logged. Read more

Logs the Record. Read more

Flushes any buffered records.

Auto Trait Implementations

impl<P> Send for Logger<P>

impl<P> Sync for Logger<P>