forked from AztecProtocol/aztec-packages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
debug.ts
104 lines (95 loc) · 3.74 KB
/
debug.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
import debug from 'debug';
import { type LogFn } from './log_fn.js';
let preLogHook: ((...args: any[]) => void) | undefined;
let postLogHook: ((...args: any[]) => void) | undefined;
/**
* Process and handle the logging of messages through custom hooks and the given logger.
* This function checks if the logger's namespace is enabled, executes any preLogHook functions, logs the message using the provided logger, and then executes any postLogHook functions.
*
* @param logger - The debug logger instance to be used for logging.
* @param args - The arguments to be passed to the logger and any hook functions.
*/
function theFunctionThroughWhichAllLogsPass(logger: any, ...args: any[]) {
if (!debug.enabled(logger.namespace)) {
return;
}
if (preLogHook) {
preLogHook(logger.namespace, ...args);
}
logger(...args);
if (postLogHook) {
postLogHook(logger.namespace, ...args);
}
}
/**
* Return a logger, meant to be silent by default and verbose during debugging.
* @param name - The module name of the logger.
* @returns A callable log function.
*/
export function createDebugOnlyLogger(name: string): LogFn {
const logger = debug(name);
return (...args: any[]) => theFunctionThroughWhichAllLogsPass(logger, ...args);
}
/**
* Set a function to be called before each log message is handled by the debug logger.
* The hook function will receive the logger namespace and any arguments passed to the logger.
* This can be useful for adding additional context, filtering logs, or performing side-effects
* based on logged messages.
*
* @param fn - The function to be called before each log message.
*/
export function setPreDebugLogHook(fn: (...args: any[]) => void) {
preLogHook = fn;
}
/**
* Set a callback function to be executed after each log is written by the debug logger.
* This allows additional behavior or side effects to occur after a log has been written,
* such as sending logs to external services, formatting output, or triggering events.
*
* @param fn - The callback function to be executed after each log. It receives the same arguments as the original log function call.
*/
export function setPostDebugLogHook(fn: (...args: any[]) => void) {
postLogHook = fn;
}
/**
* Enable logs for the specified namespace(s) or wildcard pattern(s).
* This function activates the logging functionality for the given
* namespace(s) or pattern(s), allowing developers to selectively display
* debug logs that match the provided string(s).
*
* @param str - The namespace(s) or wildcard pattern(s) for which logs should be enabled.
*/
export function enableLogs(str: string) {
debug.enable(str);
}
/**
* Check if the logging is enabled for a given namespace.
* The input 'str' represents the namespace for which the log status is being checked.
* Returns true if the logging is enabled, otherwise false.
*
* @param str - The namespace string used to determine if logging is enabled.
* @returns A boolean indicating whether logging is enabled for the given namespace.
*/
export function isLogEnabled(str: string) {
return debug.enabled(str);
}
/**
* Format a debug string filling in `'{0}'` entries with their
* corresponding values from the args array, amd `'{}'` with the whole array.
*
* @param formatStr - str of form `'this is a string with some entries like {0} and {1}'`
* @param args - array of fields to fill in the string format entries with
* @returns formatted string
*/
interface Printable {
toString(): string;
}
export function applyStringFormatting(formatStr: string, args: Printable[]): string {
return formatStr
.replace(/{(\d+)}/g, (match, index) => {
return typeof args[index] === 'undefined' ? match : args[index].toString();
})
.replace(/{}/g, (_match, _index) => {
return args.toString();
});
}