16 lines
416 B
TypeScript
16 lines
416 B
TypeScript
import * as plugins from './tswatch.plugins.js';
|
|
|
|
export const logger = new plugins.smartlog.Smartlog({
|
|
logContext: {
|
|
company: 'Some Company',
|
|
companyunit: 'Some CompanyUnit',
|
|
containerName: 'Some Containername',
|
|
environment: 'local',
|
|
runtime: 'node',
|
|
zone: 'gitzone',
|
|
},
|
|
minimumLogLevel: 'silly',
|
|
});
|
|
|
|
logger.addLogDestination(new plugins.smartlogDestinationLocal.DestinationLocal());
|