UNPKG

create-sekiban-app

Version:

Create a new Sekiban application with Dapr

16 lines 488 B
export const logger = { info: (message: string, ...args: any[]) => { console.log(`[INFO] ${message}`, ...args); }, error: (message: string, ...args: any[]) => { console.error(`[ERROR] ${message}`, ...args); }, warn: (message: string, ...args: any[]) => { console.warn(`[WARN] ${message}`, ...args); }, debug: (message: string, ...args: any[]) => { if (process.env.NODE_ENV === 'development') { console.debug(`[DEBUG] ${message}`, ...args); } } };