forked from SamuelBolduc/log4js-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
106 lines (89 loc) · 2.36 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
'use strict';
const log4js = require('log4js');
const stack = require('callsite');
const util = require('util');
const env = process.env.NODE_ENV || 'development';
class Logger {
constructor(level, alias, filename) {
this.alias = alias || null;
this.logLevel = level.toLowerCase() || 'trace';
this.forceAlias = false;
this.pathOffset = 0;
const prodAlias = this.alias || stack()[2].getFileName().split('/').splice(__filename.split('/').length - (2 + this.pathOffset)).join('/');
const appenders = [{
type: 'console',
}];
if(typeof filename === 'string') {
appenders.push({
type: 'file',
filename,
category: prodAlias,
layout: {
type: 'colored',
},
});
}
log4js.configure({
appenders,
});
this.loggerProd = log4js.getLogger(prodAlias);
this.loggerProd.setLevel(this.logLevel);
}
setPathOffset(offset) {
this.pathOffset = offset;
}
setForceAlias(bool) {
this.forceAlias = bool;
}
t(...args) {
this.generateCallback('trace')(args);
}
d(...args) {
this.generateCallback('debug')(args);
}
e(...args) {
this.generateCallback('error')(args);
}
w(...args) {
this.generateCallback('warn')(args);
}
i(...args) {
this.generateCallback('info')(args);
}
f(...args) {
const that = this;
if(env === 'development' && !that.forceAlias) {
that.debugLog('fatal', args);
} else {
that.prodLog('fatal', args);
}
process.exit(1);
}
generateCallback(level) {
const that = this;
return function(args) {
if(that.logLevel !== 'off') {
if(env === 'development' && !that.forceAlias) {
that.debugLog(level, args);
} else {
that.prodLog(level, args);
}
}
};
}
debugLog(level, args) {
const stackOffset = level === 'fatal' ? 2 : 3;
const origin = stack()[stackOffset];
const log = log4js.getLogger(`${origin.getFileName().split('/').splice(__filename.split('/').length - (this.pathOffset + 3)).join('/')}:${origin.getLineNumber()}`);
log.setLevel(this.logLevel);
if(args.length === 1 && typeof args[0] === 'object') {
log[level](util.inspect(args[0], {colors: true}));
} else {
log[level](...args);
}
}
prodLog(level, args) {
this.loggerProd[level](...args);
}
}
module.exports = Logger;