Spaces:
Sleeping
Sleeping
File size: 225 Bytes
3ec134e | 1 2 3 4 5 6 7 | // backend/src/utils/logger.ts
export const logger = {
info: (...a: any[]) => console.log('[INFO]', ...a),
warn: (...a: any[]) => console.warn('[WARN]', ...a),
error: (...a: any[]) => console.error('[ERROR]', ...a),
};
|