fixed to work with node v0.1.30

This commit is contained in:
csausdev
2010-02-22 21:44:34 +11:00
parent f130b95b08
commit 64fafc3f53
3 changed files with 33 additions and 45 deletions

View File

@@ -1,28 +1,28 @@
{
appenders: [
"appenders": [
{
category: "tests",
type: "logLevelFilter",
level: "WARN",
appender: {
type: "file",
filename: "tmp-tests-warnings.log",
layout: {
type: "messagePassThrough"
"category": "tests",
"type": "logLevelFilter",
"level": "WARN",
"appender": {
"type": "file",
"filename": "tmp-tests-warnings.log",
"layout": {
"type": "messagePassThrough"
}
}
},
{
category: "tests",
type: "file",
filename: "tmp-tests.log",
layout: {
type: "messagePassThrough"
"category": "tests",
"type": "file",
"filename": "tmp-tests.log",
"layout": {
"type": "messagePassThrough"
}
}
],
levels: {
"levels": {
"tests": "DEBUG"
}
}