Struct log::LogRecord[src]
pub struct LogRecord<'a> {
pub module_path: &'a str,
pub level: LogLevel,
pub args: &'a Arguments<'a>,
pub file: &'a str,
pub line: uint,
}A LogRecord is created by the logging macros, and passed as the only argument to Loggers.
Fields
module_path | The module path of where the LogRecord originated. |
level | The LogLevel of this record. |
args | The arguments from the log line. |
file | The file of where the LogRecord originated. |
line | The line number of where the LogRecord originated. |