-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
357 lines (353 loc) · 10.4 KB
/
index.d.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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
// Generated by dts-bundle-generator v5.9.0
/// <reference types="node" />
import { WriteStream } from 'fs';
export declare enum LogLevel {
DEBUG = 1,
INFO = 2,
WARN = 4,
ERROR = 8,
FATAL = 16
}
export interface LogEntry {
date: Date;
pid: string;
level: LogLevel;
levelText: string;
levelColor: AnsiColors;
message: string;
context?: string;
}
export declare enum AnsiColors {
RESET = "\u001B[0m",
BLACK = "\u001B[30m",
GRAY = "\u001B[30;1m",
WHITE = "\u001B[37m",
RED = "\u001B[31m",
GREEN = "\u001B[32m",
YELLOW = "\u001B[33m",
BLUE = "\u001B[34m",
MAGENTA = "\u001B[35m",
CYAN = "\u001B[36m",
BRIGHT_RED = "\u001B[31;1m",
BRIGHT_GREEN = "\u001B[32;1m",
BRIGHT_YELLOW = "\u001B[33;1m",
BRIGHT_BLUE = "\u001B[34;1m",
BRIGHT_MAGENTA = "\u001B[35;1m",
BRIGHT_CYAN = "\u001B[36;1m",
BRIGHT_WHITE = "\u001B[37;1m",
BRIGHT_BLACK = "\u001B[30;1m",
BG_BRIGHT_RED = "\u001B[41;1m"
}
export declare type FormatProvider = (e: LogEntry) => string;
export declare namespace Formatters {
function createLogEntry(level: LogLevel, message: string, context?: string): LogEntry;
function colorize(color: AnsiColors, text: string): string;
/**
* The default formatter, ex:
* 2021-11-17T08:52:09.126Z 16880 INFO | Testing Info
*
* @export
* @param {LogEntry} e
* @return {*} {string}
*/
function defaultFormatter(e: LogEntry): string;
/**
* Formatter that outputs the same format as the default formatter,
* but with no ANSI colors, ex:
* 2021-11-17T08:52:09.126Z 16880 INFO | Testing Info
*
* @export
* @param {LogEntry} e
* @return {*} {string}
*/
function monochromeFormatter(e: LogEntry): string;
/**
* Formatter that serializes each log entry into JSON. Useful
* for file loggers.
*
* @export
* @param {LogEntry} e
* @return {*} {string}
*/
function jsonFormatter(e: LogEntry): string;
}
export declare type WriterInterface = WriteStream | NodeJS.WriteStream;
export declare type Provider = () => Promise<WriterInterface>;
export interface WriterOptions {
/**
* The formatter provider for this writer
*
* @type {FormatProvider}
* @memberof WriterOptions
*/
formatter?: FormatProvider;
/**
* The logging level or bitmask specific to this writer. Note that if a level
* is provided to the parent logger, its log level constraints will apply to
* the writer as well.
*
* @type {(LogLevel | number)}
* @memberof WriterOptions
*/
level?: LogLevel | number;
}
export declare type FileWriterOptions = WriterOptions & {
/**
* The CHMOD valid for the file on octal format. Defaults to 644 (0o644)
*
* @type {number}
*/
mode?: number;
/**
* The encoding. Defaults to utf-8
*
* @type {BufferEncoding}
*/
encoding?: BufferEncoding;
};
export declare class LogWriter {
private writerProvider;
private _writer;
private _formatter;
private _level;
constructor(writerProvider: Provider, options?: WriterOptions);
isLevelEnabled(level: LogLevel): boolean;
/**
* Creates a new LogWriter instance that prints to stdout
*
* @static
* @param {WriterOptions} [options]
* @return {*} {LogWriter}
* @memberof LogWriter
*/
static stdout(options?: WriterOptions): LogWriter;
/**
* Creates a new LogWriter instance that prints to stderr
*
* @static
* @param {WriterOptions} [options]
* @return {*} {LogWriter}
* @memberof LogWriter
*/
static stderr(options?: WriterOptions): LogWriter;
/**
* Creates a new LogWriter instance that dumps to a file
*
* @static
* @param {WriterOptions} options
* @return {*} {LogWriter}
* @memberof LogWriter
*/
static file(filePath: string, options?: FileWriterOptions): LogWriter;
get formatter(): FormatProvider;
/**
* Sets the formatter for this writer
*
* @param {FormatProvider} formatter
* @memberof LogWriter
*/
setFormatter(formatter: FormatProvider): void;
/**
* Writes the output to the writable stream
*
* @param {string} value
* @memberof LogWriter
*/
write(value: string): Promise<void>;
}
export declare type LoggerInstanceConfigProvider = (value: string) => LoggerInstanceConfig;
export interface LoggerGlobalConfig {
/**
* The end-of-line character. Defaults to \n
*
* @type {string}
* @memberof LoggerGlobalConfig
*/
eol?: string;
/**
* The formatter provider. This will be the formatter that serves
* as the default for any writers that do not define their own
*
* @type {FormatProvider}
* @memberof LoggerGlobalConfig
*/
formatter?: FormatProvider;
/**
* Defines the depth of object inspection (how many nested objects get printed)
* when printing objects to the console or file. If an object has nested objects or
* arrays that are nested deeper than this setting, they will print as '[object Object]'
* and 'element1,element2', respectively. Defaults to 3
*
* @type {number}
* @memberof LoggerGlobalConfig
*/
inspectionDepth?: number;
/**
* Whether or not to add ANSI color to the inspected nested objects and arrays.
* This should only be set for console loggers and not file loggers. Defaults to false
*
* @type {boolean}
* @memberof LoggerGlobalConfig
*/
inspectionColor?: boolean;
/**
* Defines the strategy by which arrays and objects are serialized to the output
* Defaults to ObjectSerializationStrategy.INSPECT
*
* @type {ObjectSerializationStrategy}
* @memberof LoggerGlobalConfig
*/
serializationStrategy?: ObjectSerializationStrategy;
/**
* Whether or not to print failed assertions. Defaults to true
*
* @type {boolean}
* @memberof LoggerGlobalConfig
*/
assertionsEnabled?: boolean;
/**
* Which logging level to use for printing failed assertions
*
* @type {LogLevel}
* @memberof LoggerGlobalConfig
*/
assertionLevel?: LogLevel;
}
export interface LoggerConfig {
global?: LoggerGlobalConfig;
providers: {
globalLoggers: Record<string, LoggerInstanceConfigProvider>;
featureLogger?: LoggerInstanceConfigProvider;
};
}
export interface LoggerInstanceConfig extends LoggerGlobalConfig {
/**
* Whether or not this logger is enabled, defaults to true
*
* @type {boolean}
* @memberof LoggerInstanceConfig
*/
enabled?: boolean;
/**
* The logging level to use. Supply a single LogLevel value and the logger
* will print all logs from the supplied level, UP. LogLevels are ordered by
* the severity: DEBUG, INFO, WARN, ERROR and FATAL. Choosing WARN will enable
* WARN, ERROR and FATAL.
*
* You can also OR multiple levels together to form a bitmask and the logger will
* print only those levels. LogLevel.INFO | LogLevel.ERROR will only print logs
* for only those two levels
*
* Optional. By default, will allow all levels. If supplying custom log levels to
* writers attached to this logger, leave this option empty, as supplying a log level
* constraint direct to this logger will apply the same constraints to all writers.
*
* @type {(LogLevel | number)}
* @memberof LoggerInstanceConfig
*/
level?: LogLevel | number;
/**
* An array of LogWriter instances to use with this logger
*
* @type {LogWriter[]}
* @memberof LoggerInstanceConfig
*/
writers: LogWriter[];
}
export declare enum ObjectSerializationStrategy {
/**
* Omits the value from the message all together
*/
OMIT = 0,
/**
* Serializes the value to JSON
*/
JSON = 1,
/**
* Outputs an inspection of the value with a default
* depth of 3. This option outputs the same as the console.log
* and console.error functions in Node. Useful for console
* output, less so for files where JSON should be preferred
*/
INSPECT = 2
}
export interface Logger {
/**
* Prints a DEBUG level log
*
* @param {*} message the message
* @param {...any[]} args the arguments to append to the message, or to inject into the message if using sprintf syntax
* @memberof Logger
*/
debug(message: any, ...args: any[]): void;
/**
* Prints an INFO level log
*
* @param {*} message the message
* @param {...any[]} args the arguments to append to the message, or to inject into the message if using sprintf syntax
* @memberof Logger
*/
info(message: any, ...args: any[]): void;
/**
* Prints a WARN level log
*
* @param {*} message the message
* @param {...any[]} args the arguments to append to the message, or to inject into the message if using sprintf syntax
* @memberof Logger
*/
warn(message: any, ...args: any[]): void;
/**
* Prints an ERROR level log
*
* @param {*} message the message
* @param {...any[]} args the arguments to append to the message, or to inject into the message if using sprintf syntax
* @memberof Logger
*/
error(message: any, ...args: any[]): void;
/**
* Prints a FATAL level log
*
* @param {*} message the message
* @param {...any[]} args the arguments to append to the message, or to inject into the message if using sprintf syntax
* @memberof Logger
*/
fatal(message: any, ...args: any[]): void;
/**
* Prints an assertion to the log
*
* @param {boolean} condition
* @param {*} message
* @param {...any[]} args
* @memberof Logger
*/
assert(condition: boolean, message: any, ...args: any[]): void;
}
declare class DefaultLogger implements Logger {
private globalConfig;
private featureLoggerTemplate;
/**
* Initializes the logging service
*
* @param {LoggerConfig} config the configuration for the logging service
* @memberof DefaultLogger
*/
init(config: LoggerConfig): void;
/**
* Initializes a logging instance for a specific feature of your application
*
* @param {string} context the context for this logger, such as a class name or module name
* @param {LoggerInstanceConfig} [config] the optional configuration for this instance. If not provided, will inherit the default logger config defined in the init method under the featureLoggers property
* @return {*} {Logger}
* @memberof DefaultLogger
*/
forFeature(context: string, config?: LoggerInstanceConfig): Logger;
debug(message: any, ...args: any[]): void;
info(message: any, ...args: any[]): void;
warn(message: any, ...args: any[]): void;
error(message: any, ...args: any[]): void;
fatal(message: any, ...args: any[]): void;
assert(condition: boolean, message: any, ...args: any[]): void;
}
export declare const Log: DefaultLogger;
export declare const LEVELS_ALL = 31;
export { };