Skip to content

Commit b934dc1

Browse files
committed
fix linter
1 parent e8af74d commit b934dc1

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

lib/logger.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module.exports = function(opts) {
55
const appenders = { stdout: { type: 'stdout' } };
66
if (opts.logPath) {
77
appenders.file = { type: 'file', filename: opts.logPath };
8-
};
8+
}
99

1010
const categories = {
1111
default: {
@@ -16,4 +16,4 @@ module.exports = function(opts) {
1616

1717
log4js.configure({ appenders, categories });
1818
return log4js.getLogger();
19-
}
19+
};

lib/proxy.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ const os = require('os');
77
const url = require('url');
88
const path = require('path');
99
const request = require('request');
10-
const log4js = require('log4js');
1110
const Cache = require('./cache');
1211
const getLogger = require('./logger');
1312

0 commit comments

Comments
 (0)