From 761444b05446d456f064c0f16c609fb1bb7d2007 Mon Sep 17 00:00:00 2001 From: Yuta Harima Date: Tue, 16 May 2017 21:26:09 +0900 Subject: [PATCH] docs(file): fix maxLogSize --- docs/file.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/file.md b/docs/file.md index ea9a262..833cf82 100644 --- a/docs/file.md +++ b/docs/file.md @@ -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'}