chore(release): 0.3.3
[risinglegends.git] / src / server / lib / logger.ts
1 export const logger = {
2   debug: (...args: any | any[]) => {
3     console.debug(...args);
4   },
5   log: (...args: any | any[]) => {
6     console.log(...args);
7   },
8   error: (...args: any | any[]) => {
9     console.error(...args);
10   },
11 }