Merge pull request #480 from yuta1024/fix_file_docs

docs(file): fix maxLogSize
This commit is contained in:
Gareth Jones 2017-06-16 08:39:45 +10:00 committed by Jorge Silva
commit 8befd8a2e3

View File

@ -38,7 +38,7 @@ This example will result in a single log file (`all-the-logs.log`) containing th
```javascript
log4js.configure({
appenders: {
everything: { type: 'file', filename: 'all-the-logs.log', maxLogSize: 10458760, backups: 3, compress: true }
everything: { type: 'file', filename: 'all-the-logs.log', maxLogSize: 10485760, backups: 3, compress: true }
},
categories: {
default: { appenders: [ 'everything' ], level: 'debug'}