export const debugLog = (...data: any[]): void => { if (process.env.LOG_LEVEL === "DEBUG") { console.log(...data) } }