8000 fixed lint problem · mKoder/log4js-node@3f93872 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3f93872

Browse files
author
Gareth Jones
committed
fixed lint problem
1 parent eac6295 commit 3f93872

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

lib/appenders/file.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,13 @@ function fileAppender (file, layout, logSize, numBackups, options, timezoneOffse
4747
//there has to be at least one backup if logSize has been specified
4848
numBackups = numBackups === 0 ? 1 : numBackups;
4949

50-
debug("Creating file appender (", file, ", ", logSize, ", ", numBackups, ", ", options, ", ", timezoneOffset, ")");
50+
debug("Creating file appender (",
51+
file, ", ",
52+
logSize, ", ",
53+
numBackups, ", ",
54+
options, ", ",
55+
timezoneOffset, ")"
56+
);
5157
var writer = openTheStream(file, logSize, numBackups, options);
5258

5359
// push file to the stack of open handlers

0 commit comments

Comments
 (0)
0