This commit is contained in:
2025-08-22 00:16:10 -04:00
parent a733118d35
commit 89a829dac0
+5
View File
@@ -0,0 +1,5 @@
export const debugLog = (...data: any[]): void => {
if (process.env.LOG_LEVEL === "DEBUG") {
console.log(...data)
}
}