-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlogger.ts
284 lines (258 loc) · 5.96 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
import stdout from "./stdout.ts";
import Writer from "./writer.ts";
import eol from "./eol.ts";
import Dater from "./date.ts";
import { cyan, exists, green, red, stripAnsiCode, yellow } from "./deps.ts";
import type { fileLoggerOptions, LoggerWriteOptions } from "./interface.ts";
import Types from "./types.ts";
const { inspect } = Deno;
const noop = async () => {};
export type LoggerType = "debug" | "info" | "log" | "warn" | "error";
/**
* Logger class
*/
export default class Logger {
private stdout = stdout;
private encoder = new TextEncoder();
private writer?: Writer;
private rotate = false;
private dir?: string;
#debug = this.debug;
#info = this.info;
#log = this.log;
#warn = this.warn;
#error = this.error;
#write = this.write;
private format(...args: unknown[]): Uint8Array {
const msg = args.map((arg) => typeof arg === "string" ? arg : inspect(arg))
.join(" ");
// const msg = args.map(arg => inspect(arg, {
// showHidden: true,
// depth: 4,
// colors: true,
// indentLevel: 2
// })).join('');
return this.encoder.encode(stripAnsiCode(msg) + eol);
}
/**
* Log message with debug level
* @param args data to log
*/
async debug(...args: unknown[]): Promise<void> {
args = [this.getDebug(), ...args];
this.stdout(...args);
if (this.dir) {
await this.write({
dir: this.dir,
type: Types.DEBUG,
args,
});
}
}
/**
* Log message with info level
* @param args data to log
*/
async info(...args: unknown[]): Promise<void> {
args = [this.getInfo(), ...args];
this.stdout(...args);
if (this.dir) {
await this.write({
dir: this.dir,
type: Types.INFO,
args,
});
}
}
/**
* Log message with info level
* @param args data to log
*/
async log(...args: unknown[]): Promise<void> {
args = [this.getLog(), ...args];
this.stdout(...args);
if (this.dir) {
await this.write({
dir: this.dir,
type: Types.LOG,
args,
});
}
}
/**
* Log message with warning level
* @param args data to log
*/
async warn(...args: unknown[]): Promise<void> {
args = [this.getWarn(), ...args];
this.stdout(...args);
if (this.dir) {
await this.write({
dir: this.dir,
type: Types.WARN,
args,
});
}
}
/**
* Log message with error level
* @param args data to log
*/
async error(...args: unknown[]): Promise<void> {
args = [this.getError(), ...args];
this.stdout(...args);
if (this.dir) {
await this.write({
dir: this.dir,
type: Types.ERROR,
args,
});
}
}
private write({ dir, type, args }: LoggerWriteOptions): Promise<void> {
const date = this.getDate();
const filename = this.rotate === true ? `${date}_${type}` : type;
const path = `${dir}/${filename}.log`;
const msg = this.format(...args);
return this.writer!.write({ path, msg, type });
}
/**
* init file logger
* @param dir
* @param options
*/
async initFileLogger(
dir: string,
options: fileLoggerOptions = {},
): Promise<void> {
const exist = await exists(dir, { isDirectory: true });
if (!exist) {
stdout(`${this.getWarn()} Log folder does not exist`);
try {
Deno.mkdirSync(dir, { recursive: true });
stdout(`${this.getInfo()} Log folder create success`);
} catch (error) {
stdout(`${this.getError()} Log folder create failed: ` + error);
}
}
const { rotate, maxBytes, maxBackupCount } = options;
if (rotate === true) this.rotate = true;
this.dir = dir;
this.writer = new Writer({
maxBytes,
maxBackupCount,
});
}
/**
* disable a specific type of logger
* @param type Level of logger to disable
*/
disable(type?: LoggerType): void {
if (!type) {
this.debug = noop;
this.info = noop;
this.log = noop;
this.warn = noop;
this.error = noop;
return;
}
if (type === "debug") {
this.debug = noop;
return;
}
if (type === "info") {
this.info = noop;
return;
}
if (type === "log") {
this.log = noop;
return;
}
if (type === "warn") {
this.warn = noop;
return;
}
if (type === "error") {
this.error = noop;
return;
}
}
/**
* Enable a specific type of logger
* @param type Level of logger to enable
*/
enable(type?: LoggerType): void {
if (!type) {
this.debug = this.#debug;
this.info = this.#info;
this.log = this.#log;
this.warn = this.#warn;
this.error = this.#error;
}
if (type === "debug") {
this.debug = this.#debug;
return;
}
if (type === "info") {
this.info = this.#info;
return;
}
if (type === "log") {
this.log = this.#log;
return;
}
if (type === "warn") {
this.warn = this.#warn;
return;
}
if (type === "error") {
this.error = this.#error;
return;
}
}
/**
* Disable console logger
*/
disableConsole(): void {
this.stdout = noop;
}
/**
* Enable console logger
*/
enableConsole(): void {
this.stdout = stdout;
}
/**
* Disable file logger
*/
disableFile(): void {
this.write = noop;
}
/**
* Enable file logger
*/
enableFile(): void {
this.write = this.#write;
}
private getDebug(): string {
return green(this.getNow() + cyan(` Debug:`));
}
private getInfo(): string {
return green(this.getNow() + green(` Info:`));
}
private getLog(): string {
return green(`${this.getNow()} Log:`);
}
private getWarn(): string {
return green(this.getNow()) + yellow(` Warn:`);
}
private getError(): string {
return green(this.getNow()) + red(` Error:`);
}
private getNow(): string {
return new Dater().toLocaleString();
}
private getDate(): string {
return new Dater().toLocaleDateString();
}
}