Files
snakebot/log4rs.toml
2016-09-20 19:02:02 +02:00

23 lines
358 B
TOML

[appenders.console]
kind = "console"
[appenders.console.encoder]
pattern = "{d(%+)(local)} [{t}] {h({l})} {M}:{m}{n}"
[appenders.client]
kind = "file"
path = "log/client.log"
[appenders.snake]
kind = "file"
path = "log/snake.log"
[root]
level = "info"
appenders = [ "console" ]
[loggers.client]
level = "debug"
appenders = [ "client" ]
additive = false