Removed mentions of pollInterval (issue #93)

date-rolling-file-appender
Gareth Jones 12 years ago
parent 012b0d5ed7
commit a6fb26efb1

@ -110,7 +110,6 @@ If you have already defined an absolute path for one of the FileAppenders in the
"filename": "relative/path/to/log_file.log", "filename": "relative/path/to/log_file.log",
"maxLogSize": 20480, "maxLogSize": 20480,
"backups": 3, "backups": 3,
"pollInterval": 15,
"category": "relative-logger" "category": "relative-logger"
}, },
{ {
@ -119,7 +118,6 @@ If you have already defined an absolute path for one of the FileAppenders in the
"filename": "/absolute/path/to/log_file.log", "filename": "/absolute/path/to/log_file.log",
"maxLogSize": 20480, "maxLogSize": 20480,
"backups": 10, "backups": 10,
"pollInterval": 15,
"category": "absolute-logger" "category": "absolute-logger"
} }
] ]

@ -115,8 +115,7 @@ vows.describe('log4js').addBatch({
"type" : "file", "type" : "file",
"filename" : "cheesy-wotsits.log", "filename" : "cheesy-wotsits.log",
"maxLogSize" : 1024, "maxLogSize" : 1024,
"backups" : 3, "backups" : 3
"pollInterval" : 15
} }
] ]
}; };

@ -4,8 +4,7 @@
"type": "file", "type": "file",
"filename": "tmp-test.log", "filename": "tmp-test.log",
"maxLogSize": 1024, "maxLogSize": 1024,
"backups": 3, "backups": 3
"pollInterval": 15
} }
] ]
} }

Loading…
Cancel
Save