mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-14 21:27:20 +00:00
8 lines
171 B
TypeScript
8 lines
171 B
TypeScript
import debug from 'debug';
|
|
|
|
export function getLogger(namespace: string) {
|
|
const logger = debug(namespace);
|
|
logger.log = console.log.bind(console);
|
|
return logger;
|
|
}
|