# Scan this file for changes every 30 seconds refresh_rate:30seconds
appenders: # An appender named "stdout" that writes to stdout stdout: kind:console
# An appender named "requests" that writes to a file with a custom pattern encoder requests: kind:file path:"log/requests.log" encoder: pattern:"{d} - {m}{n}"
# Set the default logging level to "info" and attach the "stdout" appender to the root root: level:info appenders: -stdout
loggers: # Raise the maximum log level for events sent to the "app::backend::db" logger to "info" app::backend::db: level:info
# Route log events sent to the "app::requests" logger to the "requests" appender, # and *not* the normal appenders installed at the root app::requests: level:info appenders: -requests additive:false
运行结果:
1 2 3 4 5
sl@Li:~/Works/study/helloworld$ cargo run Finished dev [unoptimized + debuginfo] target(s) in 0.09s Running `target/debug/helloworld` 2018-12-10T10:11:45.240346970+08:00 INFO helloworld - Hello, world!
use log::LogLevelFilter; use log4rs::append::console::ConsoleAppender; use log4rs::append::file::FileAppender; use log4rs::encode::pattern::PatternEncoder; use log4rs::config::{Appender, Config, Logger, Root};
lethandle = log4rs::init_config(config).unwrap(); //配置完成,下面输出日志信息即可 // use handle to change logger configuration at runtime } //可以看到用代码的方式比较麻烦,所以推荐使用配置文件的方式,程序简洁,修改方便,配置灵活,何乐不为啊。
log4rs有上面的两种配置形式,函数如下:
init_config —— Initializes the global logger as a log4rs logger with the provided config.(通过代码配置)
init_file —— Initializes the global logger as a log4rs logger configured via a file.(通过配置文件配置)
# If set, log4rs will scan the file at the specified rate for changes and # automatically reconfigure the logger. The input string is parsed by the # humantime crate. refresh_rate:30seconds#配置文件的刷新速率,可以理解为每隔30s重新读取一次配置文件
# The "appenders" map contains the set of appenders, indexed by their names. appenders:
foo:
# All appenders must specify a "kind", which will be used to look up the # logic to construct the appender in the `Deserializers` passed to the # deserialization function. kind:console
# Filters attached to an appender are specified inside the "filters" # array. filters:
- # Like appenders, filters are identified by their "kind". kind:threshold
# The remainder of the configuration is passed along to the # filter's builder, and will vary based on the kind of filter. level:error
# The remainder of the configuration is passed along to the appender's # builder, and will vary based on the kind of appender. # Appenders will commonly be associated with an encoder. encoder:
# Like appenders, encoders are identified by their "kind". # # Default: pattern kind:pattern
# The remainder of the configuration is passed along to the # encoder's builder, and will vary based on the kind of encoder. pattern:"{d} [{t}] {m}{n}"
# The root logger is configured by the "root" map. root:
# The maximum log level for the root logger. # # Default: warn level:warn
# The list of appenders attached to the root logger. # # Default: empty list appenders: -foo
# The "loggers" map contains the set of configured loggers, indexed by their # names. loggers:
foo::bar::baz:
# The maximum log level. # # Default: parent logger's level level:trace
# The list of appenders attached to the logger. # # Default: empty list appenders: -foo
# The additivity of the logger. If true, appenders attached to the logger's # parent will also be attached to this logger. # Default:true additive:false
///# Configuration /// ///```yaml ///kind:rolling_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 /// ///# The policy which handles rotation of the log file. Required. ///policy: ///# Identifies which policy is to be used. If no kind is specified, it will ///# default to "compound". ///kind:compound /// ///# The remainder of the configuration is passed along to the policy's ///# deserializer, and will vary based on the kind of policy. ///trigger: ///kind:size ///limit:10mb /// ///roller: ///kind:delete ///```
d, date - The current time. By default, the ISO 8601 format is used. A custom format may be provided in the syntax accepted by chrono. The timezone defaults to local, but can be specified explicitly by passing a second argument of utc for UTC or local for local time. {d} - 2016-03-20T14:22:20.644420340-08:00 {d(%Y-%m-%d %H:%M:%S)} - 2016-03-20 14:22:20 {d(%Y-%m-%d %H:%M:%S %Z)(utc)} - 2016-03-20 22:22:20 UTC f, file - The source file that the log message came from, or ??? if not provided. h, highlight - Styles its argument according to the log level. The style is intense red for errors, red for warnings, blue for info, and the default style for all other levels. {h(the level is {l})} - the level is ERROR l``, level - The log level. L, line - The line that the log message came from, or ??? if not provided. m, message - The log message. M, module - The module that the log message came from, or ??? if not provided. n - A platform-specific newline. t, target - The target of the log message. T, thread - The name of the current thread. I, thread_id - The ID of the current thread. X, mdc - A value from the MDC. The first argument specifies the key, and the second argument specifies the default value if the key is not present in the MDC. The second argument is optional, and defaults to the empty string. {X(user_id)} - 123e4567-e89b-12d3-a456-426655440000 {X(nonexistent_key)(no mapping)} - no mapping An "unnamed" formatter simply formats its argument, applying the format specification. {({l} {m})} - INFO hello