log4rs 1.4.0

A highly configurable multi-output logging implementation for the `log` facade
Documentation
refresh_rate: 5 seconds

appenders:
  console:
    kind: console
    encoder:
      pattern: "{d(%+)(local)} [{t}] {h({l})} {M}:{m}{n}"
    filters:
      - kind: threshold
        level: error
  file:
    kind: file
    path: info.log
    encoder:
      pattern: "{d} [{t}] {l} {M}:{m}{n}"

root:
  appenders:
  - console

loggers:
  multi_logger_config::a:
    level: info
    appenders:
    - file
    additive: true