Struct log4rs::append::file::FileAppenderDeserializer
[−]
[src]
pub struct FileAppenderDeserializer;
A deserializer for the FileAppender
.
Configuration
kind: file
# The path of the log file. Required.
path: log/foo.log
# Specifies if the appender should append to or truncate the log file if it
# already exists. Defaults to `true`.
append: true
# The encoder to use to format output. Defaults to `kind: pattern`.
encoder:
kind: pattern
Trait Implementations
impl Deserialize for FileAppenderDeserializer
[src]
type Trait = Append
The trait that this builder will create.
fn deserialize(&self, config: Value, deserializers: &Deserializers) -> Result<Box<Append>, Box<Error>>
Create a new trait object based on the provided config.