CoolFace
Apppublic

Leon4gr45/builder

sourceHugging Facemitupdated 2d agoView on Hugging Face
0likes
server-logger.ts6 linesDownload Raw Back to server-generate
1const DEBUG = process.env.SERVER_GEN_DEBUG === 'true';2 3export function serverLog(...args: unknown[]) {4  if (DEBUG) console.log('[ServerGen]', ...args);5}6