@logtape/logtape 0.10.0-dev.171 → 0.11.0-dev.173
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/logger.js +38 -1
- package/package.json +1 -1
- package/script/logger.js +38 -1
- package/types/logger.d.ts +155 -10
- package/types/logger.d.ts.map +1 -1
package/esm/logger.js
CHANGED
|
@@ -258,6 +258,9 @@ export class LoggerImpl {
|
|
|
258
258
|
else if (typeof message === "function") {
|
|
259
259
|
this.logLazily("debug", message);
|
|
260
260
|
}
|
|
261
|
+
else if (!Array.isArray(message)) {
|
|
262
|
+
this.log("debug", "{*}", message);
|
|
263
|
+
}
|
|
261
264
|
else {
|
|
262
265
|
this.logTemplate("debug", message, values);
|
|
263
266
|
}
|
|
@@ -269,6 +272,9 @@ export class LoggerImpl {
|
|
|
269
272
|
else if (typeof message === "function") {
|
|
270
273
|
this.logLazily("info", message);
|
|
271
274
|
}
|
|
275
|
+
else if (!Array.isArray(message)) {
|
|
276
|
+
this.log("info", "{*}", message);
|
|
277
|
+
}
|
|
272
278
|
else {
|
|
273
279
|
this.logTemplate("info", message, values);
|
|
274
280
|
}
|
|
@@ -280,6 +286,9 @@ export class LoggerImpl {
|
|
|
280
286
|
else if (typeof message === "function") {
|
|
281
287
|
this.logLazily("warning", message);
|
|
282
288
|
}
|
|
289
|
+
else if (!Array.isArray(message)) {
|
|
290
|
+
this.log("warning", "{*}", message);
|
|
291
|
+
}
|
|
283
292
|
else {
|
|
284
293
|
this.logTemplate("warning", message, values);
|
|
285
294
|
}
|
|
@@ -291,6 +300,9 @@ export class LoggerImpl {
|
|
|
291
300
|
else if (typeof message === "function") {
|
|
292
301
|
this.logLazily("error", message);
|
|
293
302
|
}
|
|
303
|
+
else if (!Array.isArray(message)) {
|
|
304
|
+
this.log("error", "{*}", message);
|
|
305
|
+
}
|
|
294
306
|
else {
|
|
295
307
|
this.logTemplate("error", message, values);
|
|
296
308
|
}
|
|
@@ -302,6 +314,9 @@ export class LoggerImpl {
|
|
|
302
314
|
else if (typeof message === "function") {
|
|
303
315
|
this.logLazily("fatal", message);
|
|
304
316
|
}
|
|
317
|
+
else if (!Array.isArray(message)) {
|
|
318
|
+
this.log("fatal", "{*}", message);
|
|
319
|
+
}
|
|
305
320
|
else {
|
|
306
321
|
this.logTemplate("fatal", message, values);
|
|
307
322
|
}
|
|
@@ -362,6 +377,9 @@ export class LoggerCtx {
|
|
|
362
377
|
else if (typeof message === "function") {
|
|
363
378
|
this.logLazily("debug", message);
|
|
364
379
|
}
|
|
380
|
+
else if (!Array.isArray(message)) {
|
|
381
|
+
this.log("debug", "{*}", message);
|
|
382
|
+
}
|
|
365
383
|
else {
|
|
366
384
|
this.logTemplate("debug", message, values);
|
|
367
385
|
}
|
|
@@ -373,6 +391,9 @@ export class LoggerCtx {
|
|
|
373
391
|
else if (typeof message === "function") {
|
|
374
392
|
this.logLazily("info", message);
|
|
375
393
|
}
|
|
394
|
+
else if (!Array.isArray(message)) {
|
|
395
|
+
this.log("info", "{*}", message);
|
|
396
|
+
}
|
|
376
397
|
else {
|
|
377
398
|
this.logTemplate("info", message, values);
|
|
378
399
|
}
|
|
@@ -384,6 +405,9 @@ export class LoggerCtx {
|
|
|
384
405
|
else if (typeof message === "function") {
|
|
385
406
|
this.logLazily("warning", message);
|
|
386
407
|
}
|
|
408
|
+
else if (!Array.isArray(message)) {
|
|
409
|
+
this.log("warning", "{*}", message);
|
|
410
|
+
}
|
|
387
411
|
else {
|
|
388
412
|
this.logTemplate("warning", message, values);
|
|
389
413
|
}
|
|
@@ -395,6 +419,9 @@ export class LoggerCtx {
|
|
|
395
419
|
else if (typeof message === "function") {
|
|
396
420
|
this.logLazily("error", message);
|
|
397
421
|
}
|
|
422
|
+
else if (!Array.isArray(message)) {
|
|
423
|
+
this.log("error", "{*}", message);
|
|
424
|
+
}
|
|
398
425
|
else {
|
|
399
426
|
this.logTemplate("error", message, values);
|
|
400
427
|
}
|
|
@@ -406,6 +433,9 @@ export class LoggerCtx {
|
|
|
406
433
|
else if (typeof message === "function") {
|
|
407
434
|
this.logLazily("fatal", message);
|
|
408
435
|
}
|
|
436
|
+
else if (!Array.isArray(message)) {
|
|
437
|
+
this.log("fatal", "{*}", message);
|
|
438
|
+
}
|
|
409
439
|
else {
|
|
410
440
|
this.logTemplate("fatal", message, values);
|
|
411
441
|
}
|
|
@@ -445,7 +475,14 @@ export function parseMessageTemplate(template, properties) {
|
|
|
445
475
|
else if (char === "}") {
|
|
446
476
|
// End of a placeholder
|
|
447
477
|
let prop;
|
|
448
|
-
if (part.match(/^\s
|
|
478
|
+
if (part.match(/^\s*\*\s*$/)) {
|
|
479
|
+
prop = part in properties
|
|
480
|
+
? properties[part]
|
|
481
|
+
: "*" in properties
|
|
482
|
+
? properties["*"]
|
|
483
|
+
: properties;
|
|
484
|
+
}
|
|
485
|
+
else if (part.match(/^\s|\s$/)) {
|
|
449
486
|
prop = part in properties ? properties[part] : properties[part.trim()];
|
|
450
487
|
}
|
|
451
488
|
else {
|
package/package.json
CHANGED
package/script/logger.js
CHANGED
|
@@ -287,6 +287,9 @@ class LoggerImpl {
|
|
|
287
287
|
else if (typeof message === "function") {
|
|
288
288
|
this.logLazily("debug", message);
|
|
289
289
|
}
|
|
290
|
+
else if (!Array.isArray(message)) {
|
|
291
|
+
this.log("debug", "{*}", message);
|
|
292
|
+
}
|
|
290
293
|
else {
|
|
291
294
|
this.logTemplate("debug", message, values);
|
|
292
295
|
}
|
|
@@ -298,6 +301,9 @@ class LoggerImpl {
|
|
|
298
301
|
else if (typeof message === "function") {
|
|
299
302
|
this.logLazily("info", message);
|
|
300
303
|
}
|
|
304
|
+
else if (!Array.isArray(message)) {
|
|
305
|
+
this.log("info", "{*}", message);
|
|
306
|
+
}
|
|
301
307
|
else {
|
|
302
308
|
this.logTemplate("info", message, values);
|
|
303
309
|
}
|
|
@@ -309,6 +315,9 @@ class LoggerImpl {
|
|
|
309
315
|
else if (typeof message === "function") {
|
|
310
316
|
this.logLazily("warning", message);
|
|
311
317
|
}
|
|
318
|
+
else if (!Array.isArray(message)) {
|
|
319
|
+
this.log("warning", "{*}", message);
|
|
320
|
+
}
|
|
312
321
|
else {
|
|
313
322
|
this.logTemplate("warning", message, values);
|
|
314
323
|
}
|
|
@@ -320,6 +329,9 @@ class LoggerImpl {
|
|
|
320
329
|
else if (typeof message === "function") {
|
|
321
330
|
this.logLazily("error", message);
|
|
322
331
|
}
|
|
332
|
+
else if (!Array.isArray(message)) {
|
|
333
|
+
this.log("error", "{*}", message);
|
|
334
|
+
}
|
|
323
335
|
else {
|
|
324
336
|
this.logTemplate("error", message, values);
|
|
325
337
|
}
|
|
@@ -331,6 +343,9 @@ class LoggerImpl {
|
|
|
331
343
|
else if (typeof message === "function") {
|
|
332
344
|
this.logLazily("fatal", message);
|
|
333
345
|
}
|
|
346
|
+
else if (!Array.isArray(message)) {
|
|
347
|
+
this.log("fatal", "{*}", message);
|
|
348
|
+
}
|
|
334
349
|
else {
|
|
335
350
|
this.logTemplate("fatal", message, values);
|
|
336
351
|
}
|
|
@@ -392,6 +407,9 @@ class LoggerCtx {
|
|
|
392
407
|
else if (typeof message === "function") {
|
|
393
408
|
this.logLazily("debug", message);
|
|
394
409
|
}
|
|
410
|
+
else if (!Array.isArray(message)) {
|
|
411
|
+
this.log("debug", "{*}", message);
|
|
412
|
+
}
|
|
395
413
|
else {
|
|
396
414
|
this.logTemplate("debug", message, values);
|
|
397
415
|
}
|
|
@@ -403,6 +421,9 @@ class LoggerCtx {
|
|
|
403
421
|
else if (typeof message === "function") {
|
|
404
422
|
this.logLazily("info", message);
|
|
405
423
|
}
|
|
424
|
+
else if (!Array.isArray(message)) {
|
|
425
|
+
this.log("info", "{*}", message);
|
|
426
|
+
}
|
|
406
427
|
else {
|
|
407
428
|
this.logTemplate("info", message, values);
|
|
408
429
|
}
|
|
@@ -414,6 +435,9 @@ class LoggerCtx {
|
|
|
414
435
|
else if (typeof message === "function") {
|
|
415
436
|
this.logLazily("warning", message);
|
|
416
437
|
}
|
|
438
|
+
else if (!Array.isArray(message)) {
|
|
439
|
+
this.log("warning", "{*}", message);
|
|
440
|
+
}
|
|
417
441
|
else {
|
|
418
442
|
this.logTemplate("warning", message, values);
|
|
419
443
|
}
|
|
@@ -425,6 +449,9 @@ class LoggerCtx {
|
|
|
425
449
|
else if (typeof message === "function") {
|
|
426
450
|
this.logLazily("error", message);
|
|
427
451
|
}
|
|
452
|
+
else if (!Array.isArray(message)) {
|
|
453
|
+
this.log("error", "{*}", message);
|
|
454
|
+
}
|
|
428
455
|
else {
|
|
429
456
|
this.logTemplate("error", message, values);
|
|
430
457
|
}
|
|
@@ -436,6 +463,9 @@ class LoggerCtx {
|
|
|
436
463
|
else if (typeof message === "function") {
|
|
437
464
|
this.logLazily("fatal", message);
|
|
438
465
|
}
|
|
466
|
+
else if (!Array.isArray(message)) {
|
|
467
|
+
this.log("fatal", "{*}", message);
|
|
468
|
+
}
|
|
439
469
|
else {
|
|
440
470
|
this.logTemplate("fatal", message, values);
|
|
441
471
|
}
|
|
@@ -476,7 +506,14 @@ function parseMessageTemplate(template, properties) {
|
|
|
476
506
|
else if (char === "}") {
|
|
477
507
|
// End of a placeholder
|
|
478
508
|
let prop;
|
|
479
|
-
if (part.match(/^\s
|
|
509
|
+
if (part.match(/^\s*\*\s*$/)) {
|
|
510
|
+
prop = part in properties
|
|
511
|
+
? properties[part]
|
|
512
|
+
: "*" in properties
|
|
513
|
+
? properties["*"]
|
|
514
|
+
: properties;
|
|
515
|
+
}
|
|
516
|
+
else if (part.match(/^\s|\s$/)) {
|
|
480
517
|
prop = part in properties ? properties[part] : properties[part.trim()];
|
|
481
518
|
}
|
|
482
519
|
else {
|
package/types/logger.d.ts
CHANGED
|
@@ -108,6 +108,35 @@ export interface Logger {
|
|
|
108
108
|
* properties.
|
|
109
109
|
*/
|
|
110
110
|
debug(message: string, properties?: Record<string, unknown> | (() => Record<string, unknown>)): void;
|
|
111
|
+
/**
|
|
112
|
+
* Log a debug values with no message. This is useful when you
|
|
113
|
+
* want to log properties without a message, e.g., when you want to log
|
|
114
|
+
* the context of a request or an operation.
|
|
115
|
+
*
|
|
116
|
+
* ```typescript
|
|
117
|
+
* logger.debug({ method: 'GET', url: '/api/v1/resource' });
|
|
118
|
+
* ```
|
|
119
|
+
*
|
|
120
|
+
* Note that this is a shorthand for:
|
|
121
|
+
*
|
|
122
|
+
* ```typescript
|
|
123
|
+
* logger.debug('{*}', { method: 'GET', url: '/api/v1/resource' });
|
|
124
|
+
* ```
|
|
125
|
+
*
|
|
126
|
+
* If the properties are expensive to compute, you cannot use this shorthand
|
|
127
|
+
* and should use the following syntax instead:
|
|
128
|
+
*
|
|
129
|
+
* ```typescript
|
|
130
|
+
* logger.debug('{*}', () => ({
|
|
131
|
+
* method: expensiveMethod(),
|
|
132
|
+
* url: expensiveUrl(),
|
|
133
|
+
* }));
|
|
134
|
+
* ```
|
|
135
|
+
*
|
|
136
|
+
* @param properties The values to log. Note that this does not take
|
|
137
|
+
* a callback.
|
|
138
|
+
*/
|
|
139
|
+
debug(properties: Record<string, unknown>): void;
|
|
111
140
|
/**
|
|
112
141
|
* Lazily log a debug message. Use this when the message values are expensive
|
|
113
142
|
* to compute and should only be computed if the message is actually logged.
|
|
@@ -156,6 +185,35 @@ export interface Logger {
|
|
|
156
185
|
* properties.
|
|
157
186
|
*/
|
|
158
187
|
info(message: string, properties?: Record<string, unknown> | (() => Record<string, unknown>)): void;
|
|
188
|
+
/**
|
|
189
|
+
* Log an informational values with no message. This is useful when you
|
|
190
|
+
* want to log properties without a message, e.g., when you want to log
|
|
191
|
+
* the context of a request or an operation.
|
|
192
|
+
*
|
|
193
|
+
* ```typescript
|
|
194
|
+
* logger.info({ method: 'GET', url: '/api/v1/resource' });
|
|
195
|
+
* ```
|
|
196
|
+
*
|
|
197
|
+
* Note that this is a shorthand for:
|
|
198
|
+
*
|
|
199
|
+
* ```typescript
|
|
200
|
+
* logger.info('{*}', { method: 'GET', url: '/api/v1/resource' });
|
|
201
|
+
* ```
|
|
202
|
+
*
|
|
203
|
+
* If the properties are expensive to compute, you cannot use this shorthand
|
|
204
|
+
* and should use the following syntax instead:
|
|
205
|
+
*
|
|
206
|
+
* ```typescript
|
|
207
|
+
* logger.info('{*}', () => ({
|
|
208
|
+
* method: expensiveMethod(),
|
|
209
|
+
* url: expensiveUrl(),
|
|
210
|
+
* }));
|
|
211
|
+
* ```
|
|
212
|
+
*
|
|
213
|
+
* @param properties The values to log. Note that this does not take
|
|
214
|
+
* a callback.
|
|
215
|
+
*/
|
|
216
|
+
info(properties: Record<string, unknown>): void;
|
|
159
217
|
/**
|
|
160
218
|
* Lazily log an informational message. Use this when the message values are
|
|
161
219
|
* expensive to compute and should only be computed if the message is actually
|
|
@@ -205,6 +263,35 @@ export interface Logger {
|
|
|
205
263
|
* properties.
|
|
206
264
|
*/
|
|
207
265
|
warn(message: string, properties?: Record<string, unknown> | (() => Record<string, unknown>)): void;
|
|
266
|
+
/**
|
|
267
|
+
* Log a warning values with no message. This is useful when you
|
|
268
|
+
* want to log properties without a message, e.g., when you want to log
|
|
269
|
+
* the context of a request or an operation.
|
|
270
|
+
*
|
|
271
|
+
* ```typescript
|
|
272
|
+
* logger.warn({ method: 'GET', url: '/api/v1/resource' });
|
|
273
|
+
* ```
|
|
274
|
+
*
|
|
275
|
+
* Note that this is a shorthand for:
|
|
276
|
+
*
|
|
277
|
+
* ```typescript
|
|
278
|
+
* logger.warn('{*}', { method: 'GET', url: '/api/v1/resource' });
|
|
279
|
+
* ```
|
|
280
|
+
*
|
|
281
|
+
* If the properties are expensive to compute, you cannot use this shorthand
|
|
282
|
+
* and should use the following syntax instead:
|
|
283
|
+
*
|
|
284
|
+
* ```typescript
|
|
285
|
+
* logger.warn('{*}', () => ({
|
|
286
|
+
* method: expensiveMethod(),
|
|
287
|
+
* url: expensiveUrl(),
|
|
288
|
+
* }));
|
|
289
|
+
* ```
|
|
290
|
+
*
|
|
291
|
+
* @param properties The values to log. Note that this does not take
|
|
292
|
+
* a callback.
|
|
293
|
+
*/
|
|
294
|
+
warn(properties: Record<string, unknown>): void;
|
|
208
295
|
/**
|
|
209
296
|
* Lazily log a warning message. Use this when the message values are
|
|
210
297
|
* expensive to compute and should only be computed if the message is actually
|
|
@@ -254,6 +341,35 @@ export interface Logger {
|
|
|
254
341
|
* properties.
|
|
255
342
|
*/
|
|
256
343
|
error(message: string, properties?: Record<string, unknown> | (() => Record<string, unknown>)): void;
|
|
344
|
+
/**
|
|
345
|
+
* Log an error values with no message. This is useful when you
|
|
346
|
+
* want to log properties without a message, e.g., when you want to log
|
|
347
|
+
* the context of a request or an operation.
|
|
348
|
+
*
|
|
349
|
+
* ```typescript
|
|
350
|
+
* logger.error({ method: 'GET', url: '/api/v1/resource' });
|
|
351
|
+
* ```
|
|
352
|
+
*
|
|
353
|
+
* Note that this is a shorthand for:
|
|
354
|
+
*
|
|
355
|
+
* ```typescript
|
|
356
|
+
* logger.error('{*}', { method: 'GET', url: '/api/v1/resource' });
|
|
357
|
+
* ```
|
|
358
|
+
*
|
|
359
|
+
* If the properties are expensive to compute, you cannot use this shorthand
|
|
360
|
+
* and should use the following syntax instead:
|
|
361
|
+
*
|
|
362
|
+
* ```typescript
|
|
363
|
+
* logger.error('{*}', () => ({
|
|
364
|
+
* method: expensiveMethod(),
|
|
365
|
+
* url: expensiveUrl(),
|
|
366
|
+
* }));
|
|
367
|
+
* ```
|
|
368
|
+
*
|
|
369
|
+
* @param properties The values to log. Note that this does not take
|
|
370
|
+
* a callback.
|
|
371
|
+
*/
|
|
372
|
+
error(properties: Record<string, unknown>): void;
|
|
257
373
|
/**
|
|
258
374
|
* Lazily log an error message. Use this when the message values are
|
|
259
375
|
* expensive to compute and should only be computed if the message is actually
|
|
@@ -303,6 +419,35 @@ export interface Logger {
|
|
|
303
419
|
* properties.
|
|
304
420
|
*/
|
|
305
421
|
fatal(message: string, properties?: Record<string, unknown> | (() => Record<string, unknown>)): void;
|
|
422
|
+
/**
|
|
423
|
+
* Log a fatal error values with no message. This is useful when you
|
|
424
|
+
* want to log properties without a message, e.g., when you want to log
|
|
425
|
+
* the context of a request or an operation.
|
|
426
|
+
*
|
|
427
|
+
* ```typescript
|
|
428
|
+
* logger.fatal({ method: 'GET', url: '/api/v1/resource' });
|
|
429
|
+
* ```
|
|
430
|
+
*
|
|
431
|
+
* Note that this is a shorthand for:
|
|
432
|
+
*
|
|
433
|
+
* ```typescript
|
|
434
|
+
* logger.fatal('{*}', { method: 'GET', url: '/api/v1/resource' });
|
|
435
|
+
* ```
|
|
436
|
+
*
|
|
437
|
+
* If the properties are expensive to compute, you cannot use this shorthand
|
|
438
|
+
* and should use the following syntax instead:
|
|
439
|
+
*
|
|
440
|
+
* ```typescript
|
|
441
|
+
* logger.fatal('{*}', () => ({
|
|
442
|
+
* method: expensiveMethod(),
|
|
443
|
+
* url: expensiveUrl(),
|
|
444
|
+
* }));
|
|
445
|
+
* ```
|
|
446
|
+
*
|
|
447
|
+
* @param properties The values to log. Note that this does not take
|
|
448
|
+
* a callback.
|
|
449
|
+
*/
|
|
450
|
+
fatal(properties: Record<string, unknown>): void;
|
|
306
451
|
/**
|
|
307
452
|
* Lazily log a fatal error message. Use this when the message values are
|
|
308
453
|
* expensive to compute and should only be computed if the message is actually
|
|
@@ -377,11 +522,11 @@ export declare class LoggerImpl implements Logger {
|
|
|
377
522
|
log(level: LogLevel, rawMessage: string, properties: Record<string, unknown> | (() => Record<string, unknown>), bypassSinks?: Set<Sink>): void;
|
|
378
523
|
logLazily(level: LogLevel, callback: LogCallback, properties?: Record<string, unknown>): void;
|
|
379
524
|
logTemplate(level: LogLevel, messageTemplate: TemplateStringsArray, values: unknown[], properties?: Record<string, unknown>): void;
|
|
380
|
-
debug(message: TemplateStringsArray | string | LogCallback, ...values: unknown[]): void;
|
|
381
|
-
info(message: TemplateStringsArray | string | LogCallback, ...values: unknown[]): void;
|
|
382
|
-
warn(message: TemplateStringsArray | string | LogCallback, ...values: unknown[]): void;
|
|
383
|
-
error(message: TemplateStringsArray | string | LogCallback, ...values: unknown[]): void;
|
|
384
|
-
fatal(message: TemplateStringsArray | string | LogCallback, ...values: unknown[]): void;
|
|
525
|
+
debug(message: TemplateStringsArray | string | LogCallback | Record<string, unknown>, ...values: unknown[]): void;
|
|
526
|
+
info(message: TemplateStringsArray | string | LogCallback | Record<string, unknown>, ...values: unknown[]): void;
|
|
527
|
+
warn(message: TemplateStringsArray | string | LogCallback | Record<string, unknown>, ...values: unknown[]): void;
|
|
528
|
+
error(message: TemplateStringsArray | string | LogCallback | Record<string, unknown>, ...values: unknown[]): void;
|
|
529
|
+
fatal(message: TemplateStringsArray | string | LogCallback | Record<string, unknown>, ...values: unknown[]): void;
|
|
385
530
|
}
|
|
386
531
|
/**
|
|
387
532
|
* A logger implementation with contextual properties. Do not use this
|
|
@@ -399,11 +544,11 @@ export declare class LoggerCtx implements Logger {
|
|
|
399
544
|
log(level: LogLevel, message: string, properties: Record<string, unknown> | (() => Record<string, unknown>), bypassSinks?: Set<Sink>): void;
|
|
400
545
|
logLazily(level: LogLevel, callback: LogCallback): void;
|
|
401
546
|
logTemplate(level: LogLevel, messageTemplate: TemplateStringsArray, values: unknown[]): void;
|
|
402
|
-
debug(message: TemplateStringsArray | string | LogCallback, ...values: unknown[]): void;
|
|
403
|
-
info(message: TemplateStringsArray | string | LogCallback, ...values: unknown[]): void;
|
|
404
|
-
warn(message: TemplateStringsArray | string | LogCallback, ...values: unknown[]): void;
|
|
405
|
-
error(message: TemplateStringsArray | string | LogCallback, ...values: unknown[]): void;
|
|
406
|
-
fatal(message: TemplateStringsArray | string | LogCallback, ...values: unknown[]): void;
|
|
547
|
+
debug(message: TemplateStringsArray | string | LogCallback | Record<string, unknown>, ...values: unknown[]): void;
|
|
548
|
+
info(message: TemplateStringsArray | string | LogCallback | Record<string, unknown>, ...values: unknown[]): void;
|
|
549
|
+
warn(message: TemplateStringsArray | string | LogCallback | Record<string, unknown>, ...values: unknown[]): void;
|
|
550
|
+
error(message: TemplateStringsArray | string | LogCallback | Record<string, unknown>, ...values: unknown[]): void;
|
|
551
|
+
fatal(message: TemplateStringsArray | string | LogCallback | Record<string, unknown>, ...values: unknown[]): void;
|
|
407
552
|
}
|
|
408
553
|
/**
|
|
409
554
|
* Parse a message template into a message template array and a values array.
|
package/types/logger.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"logger.d.ts","sourceRoot":"","sources":["../src/logger.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"logger.d.ts","sourceRoot":"","sources":["../src/logger.ts"],"names":[],"mappings":"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"}
|