log4js-node/spec/fixtures/with-logLevelFilter.json

29 lines
502 B
JSON
Raw Normal View History

2010-01-19 19:26:54 +08:00
{
2010-02-22 18:44:34 +08:00
"appenders": [
2010-01-19 19:26:54 +08:00
{
2010-02-22 18:44:34 +08:00
"category": "tests",
"type": "logLevelFilter",
"level": "WARN",
"appender": {
"type": "file",
"filename": "tmp-tests-warnings.log",
"layout": {
"type": "messagePassThrough"
2010-01-19 19:26:54 +08:00
}
}
},
{
2010-02-22 18:44:34 +08:00
"category": "tests",
"type": "file",
"filename": "tmp-tests.log",
"layout": {
"type": "messagePassThrough"
2010-01-19 19:26:54 +08:00
}
}
],
2010-02-22 18:44:34 +08:00
"levels": {
2010-01-19 19:26:54 +08:00
"tests": "DEBUG"
}
}