9 lines
159 B
TypeScript
9 lines
159 B
TypeScript
|
import { ConsoleTracingLogger } from '@/utils';
|
||
|
|
||
|
export const testingLogger = new ConsoleTracingLogger('test', [
|
||
|
'info',
|
||
|
'warn',
|
||
|
'error',
|
||
|
'debug',
|
||
|
]);
|