test / client /src /logger.js
akborana4's picture
Create logger.js
3429c1d verified
export const log = {
info: (...args) => {
console.info('[Party][INFO]', ...args);
},
warn: (...args) => {
console.warn('[Party][WARN]', ...args);
},
error: (...args) => {
console.error('[Party][ERROR]', ...args);
}
};