Struct flexi_logger::LogRecord
[−]
[src]
pub struct LogRecord<'a> { /* fields omitted */ }
The "payload" of a log message. This structure is primarily used as a
parameter in the log
method of the Log
trait.
Methods
impl<'a> LogRecord<'a>
[src]
fn args(&self) -> &Arguments<'a>
The message body.
fn metadata(&self) -> &LogMetadata
Metadata about the log directive.
fn location(&self) -> &LogLocation
The location of the log directive.
fn level(&self) -> LogLevel
The verbosity level of the message.
fn target(&self) -> &str
The name of the target of the directive.