-
Notifications
You must be signed in to change notification settings - Fork 158
/
Copy pathlogger.ts
141 lines (115 loc) · 3.52 KB
/
logger.ts
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
import * as winston from 'winston';
import { LoggingConfig } from './service/config';
export interface LogWriter {
write(message, encoding);
}
export interface Logger {
errorWriter: LogWriter;
debugWriter: LogWriter;
debug(message?: string, ...optionalParams: any[]);
info(message?: string, ...optionalParams: any[]);
warn(message?: string, ...optionalParams: any[]);
error(message?: string, ...optionalParams: any[]);
}
export class ConsoleLogger implements Logger {
errorWriter: LogWriter;
debugWriter: LogWriter;
logger: winston.Logger;
constructor(config: LoggingConfig) {
const transports: any[] = [];
if (config.console) {
const options: any = {
exitOnError: false,
};
if (config.console.level) {
options.level = config.console.level;
}
const formatters: any[] = [];
if (config.console.colorize) {
formatters.push(winston.format.colorize());
}
if (config.console.json) {
formatters.push(winston.format.json());
} else {
formatters.push(winston.format.align());
formatters.push(winston.format.simple());
}
options.format = winston.format.combine(...(formatters as any));
transports.push(new winston.transports.Console(options));
}
this.logger = winston.createLogger({
level: config.level,
exitOnError: false,
transports: transports,
});
this.errorWriter = {
write: (message) => {
this.logger.error(message);
},
};
this.debugWriter = {
write: (message) => {
this.logger.debug(message);
},
};
}
private logEntry(level: string, message: string, ...optionalParams: any[]) {
const meta: any = {};
if (optionalParams) {
for (let n = 0; n < optionalParams.length; n += 2) {
const key = optionalParams[n];
const value = optionalParams[n + 1];
if (key !== null && value !== null) {
meta[key] = value;
}
}
}
this.logger.log(level, message, meta);
}
debug(message: string, ...optionalParams: any[]) {
this.logEntry('debug', message, ...optionalParams);
}
info(message: string, ...optionalParams: any[]) {
this.logEntry('info', message, ...optionalParams);
}
warn(message: string, ...optionalParams: any[]) {
this.logEntry('warn', message, ...optionalParams);
}
error(message: string, ...optionalParams: any[]) {
this.logEntry('error', message, ...optionalParams);
}
}
export class PluginLogger implements Logger {
errorWriter: LogWriter;
debugWriter: LogWriter;
private logEntry(level: string, message?: string, ...optionalParams: any[]) {
const logEntry = {
'@level': level,
};
if (message) {
logEntry['@message'] = message;
}
if (optionalParams) {
for (let n = 0; n < optionalParams.length; n += 2) {
const key = optionalParams[n];
const value = optionalParams[n + 1];
if (key !== null && value !== null) {
logEntry[key] = value;
}
}
}
console.error(JSON.stringify(logEntry));
}
debug(message?: string, ...optionalParams: any[]) {
this.logEntry('debug', message, ...optionalParams);
}
info(message?: string, ...optionalParams: any[]) {
this.logEntry('info', message, ...optionalParams);
}
warn(message?: string, ...optionalParams: any[]) {
this.logEntry('warn', message, ...optionalParams);
}
error(message?: string, ...optionalParams: any[]) {
this.logEntry('error', message, ...optionalParams);
}
}