feat: initial Papo bot scaffold
This commit is contained in:
5
src/utils/logger.ts
Normal file
5
src/utils/logger.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
export const logger = {
|
||||
info: (msg: string) => console.log(`[INFO] ${msg}`),
|
||||
warn: (msg: string) => console.warn(`[WARN] ${msg}`),
|
||||
error: (msg: string, err?: unknown) => console.error(`[ERROR] ${msg}`, err)
|
||||
};
|
||||
Reference in New Issue
Block a user