10 lines
275 B
TypeScript
10 lines
275 B
TypeScript
|
import * as plugins from '../../plugins.js';
|
||
|
|
||
|
export const logger = new plugins.smartlog.Smartlog({
|
||
|
logContext: {},
|
||
|
minimumLogLevel: 'info',
|
||
|
});
|
||
|
|
||
|
logger.addLogDestination(new plugins.smartlogDestinationLocal.DestinationLocal());
|
||
|
|
||
|
logger.log('info', 'Logger initialized');
|