Spaces:
Sleeping
Sleeping
| export const log = { | |
| info: (...args) => { | |
| console.info('[Party][INFO]', ...args); | |
| }, | |
| warn: (...args) => { | |
| console.warn('[Party][WARN]', ...args); | |
| }, | |
| error: (...args) => { | |
| console.error('[Party][ERROR]', ...args); | |
| } | |
| }; | |