File size: 482 Bytes
88c4c60 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | // Debug logging utility — only active in dev mode (NODE_ENV !== "production")
// Outputs are tagged with [DBG:tag] for easy grep/filter
const isDev = process.env.NODE_ENV !== "production";
function ts() {
return new Date().toLocaleTimeString("en-US", { hour12: false, hour: "2-digit", minute: "2-digit", second: "2-digit" });
}
export function dbg(tag, msg) {
if (!isDev) return;
console.log(`[${ts()}] 🐛 [DBG:${tag}] ${msg}`);
}
export const isDebugEnabled = isDev;
|