@vvlad1973/simple-logger 2.1.9 → 2.2.0

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.
@@ -13,13 +13,12 @@ import {
13
13
  prepareLogCall,
14
14
  } from '../helpers/helpers.js';
15
15
  import { LoggerLevels } from '../constants/constants.js';
16
- import {
17
- type ExternalLogger,
18
- type LogFn,
19
- type LoggerFactory,
20
- type LoggerLevel,
21
- type LoggerOptions,
22
- PreparedLogCall,
16
+ import type {
17
+ ExternalLogger,
18
+ LogFn,
19
+ LoggerFactory,
20
+ LoggerLevel,
21
+ LoggerOptions,
23
22
  } from '../types/simple-logger.types.js';
24
23
 
25
24
  export default class SimpleLogger {
@@ -69,13 +68,13 @@ export default class SimpleLogger {
69
68
  const levels = Object.values(LoggerLevels);
70
69
  if (explicitLevel) return explicitLevel;
71
70
  if (
72
- logger &&
73
- typeof logger === 'object' &&
74
71
  'level' in logger &&
75
- typeof (logger as any).level === 'string'
72
+ typeof logger.level === 'string'
76
73
  ) {
77
- const lvl = (logger as any).level.toLowerCase();
78
- if (levels.includes(lvl as LoggerLevel)) return lvl as LoggerLevel;
74
+ const lvl = logger.level.toLowerCase();
75
+ const isValidLevel = (value: string): value is LoggerLevel =>
76
+ (levels as readonly string[]).includes(value);
77
+ if (isValidLevel(lvl)) return lvl;
79
78
  }
80
79
  return levels[this.currentLevelIndex];
81
80
  }
@@ -108,9 +107,9 @@ export default class SimpleLogger {
108
107
  } = options;
109
108
 
110
109
  const hasParams =
111
- level ||
112
- msgPrefix ||
113
- transport ||
110
+ level !== undefined ||
111
+ msgPrefix !== undefined ||
112
+ transport !== undefined ||
114
113
  Object.keys(bindings).length > 0 ||
115
114
  Object.keys(restOptions).length > 0;
116
115
  const effectiveBindings = {
@@ -229,7 +228,14 @@ export default class SimpleLogger {
229
228
  const prepared = prepareLogCall(args);
230
229
 
231
230
  if (prepared !== null) {
232
- (method as (...args: unknown[]) => void).apply(this.logger, prepared);
231
+ const [first, ...rest] = prepared;
232
+ if (typeof first === 'string') {
233
+ method(first, ...rest);
234
+ } else if (typeof first === 'object') {
235
+ const [second, ...otherRest] = rest;
236
+ const msg = typeof second === 'string' ? second : undefined;
237
+ method(first, msg, ...otherRest);
238
+ }
233
239
  } else {
234
240
  console.warn(`Invalid log arguments for "${level}"`, args);
235
241
  }
@@ -250,7 +256,7 @@ export default class SimpleLogger {
250
256
  const fullMsg = util.format(msg, ...rest);
251
257
 
252
258
  const ctx = Object.entries({ ...this.bindings, ...context })
253
- .map(([k, v]) => `${k}=${v}`)
259
+ .map(([k, v]) => `${k}=${String(v)}`)
254
260
  .join(' ');
255
261
 
256
262
  const prefix = `[${time}] ${levelStr}`;
@@ -318,11 +324,7 @@ export default class SimpleLogger {
318
324
  public child(newBindings: Record<string, unknown>): SimpleLogger {
319
325
  const merged = { ...this.bindings, ...newBindings };
320
326
 
321
- if (
322
- this.isExternal &&
323
- typeof this.logger === 'object' &&
324
- this.logger !== null
325
- ) {
327
+ if (this.isExternal) {
326
328
  const logger = this.logger as ExternalLogger;
327
329
  const childFn = logger.child;
328
330
 
@@ -359,7 +361,25 @@ export default class SimpleLogger {
359
361
  * @return {void}
360
362
  */
361
363
  public logFunctionEnd(name?: string): void {
362
- const caller = name || getCallerName();
364
+ const caller = name ?? getCallerName();
363
365
  this.trace(`Function end: ${caller}`);
364
366
  }
367
+
368
+ /**
369
+ * Flushes the logger buffer if the external logger supports it.
370
+ * This is useful for ensuring all buffered log entries are written before the application exits.
371
+ *
372
+ * @return {Promise<void>} A promise that resolves when the flush is complete.
373
+ */
374
+ public async flush(): Promise<void> {
375
+ if (!this.isExternal) {
376
+ return;
377
+ }
378
+
379
+ const logger = this.logger as ExternalLogger & { flush?: (callback: () => void) => void };
380
+ if (typeof logger.flush === 'function') {
381
+ const flushAsync = util.promisify(logger.flush.bind(logger)) as () => Promise<void>;
382
+ await flushAsync();
383
+ }
384
+ }
365
385
  }
@@ -36,6 +36,22 @@ export function extractMessage(args: unknown[]): {
36
36
  return { msg: '', rest: [] };
37
37
  }
38
38
 
39
+ /**
40
+ * Type guard to check if value is a plain object record.
41
+ *
42
+ * @param {unknown} value - The value to check.
43
+ * @return {value is Record<string, unknown>} True if the value is a plain object.
44
+ */
45
+ function isPlainObject(value: unknown): value is Record<string, unknown> {
46
+ return (
47
+ typeof value === 'object' &&
48
+ value !== null &&
49
+ !Array.isArray(value) &&
50
+ (Object.getPrototypeOf(value) === Object.prototype ||
51
+ Object.getPrototypeOf(value) === null)
52
+ );
53
+ }
54
+
39
55
  /**
40
56
  * Extracts the context object from the provided array of arguments.
41
57
  *
@@ -44,8 +60,8 @@ export function extractMessage(args: unknown[]): {
44
60
  */
45
61
  export function extractContext(args: unknown[]): Record<string, unknown> {
46
62
  const [first] = args;
47
- if (typeof first === 'object' && first !== null && !Array.isArray(first)) {
48
- return first as Record<string, unknown>;
63
+ if (isPlainObject(first)) {
64
+ return first;
49
65
  }
50
66
  return {};
51
67
  }
@@ -72,13 +88,15 @@ export function colorizeLevel(level: LoggerLevel, label: string): string {
72
88
  default:
73
89
  return label;
74
90
  }
91
+ }
92
+
75
93
  /**
76
94
  * Prepares the log call by rearranging the provided arguments into a standardized format.
77
95
  *
78
96
  * @param {unknown[]} args - The array of arguments to prepare for the log call.
79
97
  * @return {PreparedLogCall} The prepared log call arguments, or null if the input is invalid.
80
98
  */
81
- }export function prepareLogCall(args: unknown[]): PreparedLogCall {
99
+ export function prepareLogCall(args: unknown[]): PreparedLogCall {
82
100
  if (typeof args[0] === 'string') {
83
101
  return [args[0], ...args.slice(1)];
84
102
  }
@@ -1,6 +1,16 @@
1
1
  import { LoggerLevels } from '../constants/constants.js';
2
2
  import type { ExternalLogger } from '../types/simple-logger.types.js';
3
3
 
4
+ /**
5
+ * Type guard to check if value is an object with properties.
6
+ *
7
+ * @param {unknown} value - The value to check.
8
+ * @return {value is Record<string, unknown>} True if the value is an object.
9
+ */
10
+ function isObjectWithProperties(value: unknown): value is Record<string, unknown> {
11
+ return typeof value === 'object' && value !== null;
12
+ }
13
+
4
14
  /**
5
15
  * Checks if the provided logger is a valid ExternalLogger instance.
6
16
  *
@@ -10,27 +20,26 @@ import type { ExternalLogger } from '../types/simple-logger.types.js';
10
20
  export function isValidLogger(logger: unknown): logger is ExternalLogger {
11
21
  const levels = Object.values(LoggerLevels);
12
22
 
13
- if (typeof logger !== 'object' || logger === null) {
23
+ if (!isObjectWithProperties(logger)) {
14
24
  return false;
15
25
  }
16
26
 
17
- const candidate = logger as Record<string, unknown>;
18
-
19
- return levels.some((level) => typeof candidate[level] === 'function');
27
+ return levels.some((level) => typeof logger[level] === 'function');
20
28
  }
21
29
 
22
30
  /**
23
31
  * Checks if the provided logger is an ExternalLogger instance with a child method.
24
32
  *
25
33
  * @param {unknown} logger - The logger to check.
26
- * @return {logger is ExternalLogger & { child: Function }} True if the logger is an ExternalLogger with a child method, false otherwise.
34
+ * @return {logger is ExternalLogger & { child: (bindings: Record<string, unknown>, options?: Record<string, unknown>) => ExternalLogger }} True if the logger is an ExternalLogger with a child method, false otherwise.
27
35
  */
28
36
  export function hasChild(
29
37
  logger: unknown
30
- ): logger is ExternalLogger & { child: Function } {
38
+ ): logger is ExternalLogger & { child: (bindings: Record<string, unknown>, options?: Record<string, unknown>) => ExternalLogger } {
31
39
  return (
32
40
  typeof logger === 'object' &&
33
41
  logger !== null &&
34
- typeof (logger as any).child === 'function'
42
+ 'child' in logger &&
43
+ typeof logger.child === 'function'
35
44
  );
36
45
  }
@@ -3,8 +3,7 @@ import type { LoggerLevels } from '../constants/constants';
3
3
  export type LoggerLevel = (typeof LoggerLevels)[keyof typeof LoggerLevels];
4
4
 
5
5
  export interface LogFn {
6
- <T extends object>(obj: T, msg?: string, ...args: unknown[]): void;
7
- (obj: unknown, msg?: string, ...args: unknown[]): void;
6
+ (obj: object, msg?: string, ...args: unknown[]): void;
8
7
  (msg: string, ...args: unknown[]): void;
9
8
  }
10
9