Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 262 Bytes
af1f386 |
1 2 3 4 5 6 7 8 9 10 11 12 |
const DEBUG_LOG = true;
export const debugLog = (...args: unknown[]) => {
if (!DEBUG_LOG) return;
console.log("[LOG DEBUG]", ...args);
};
export const debugError = (...args: unknown[]) => {
if (!DEBUG_LOG) return;
console.error("[LOG DEBUG]", ...args);
};
|