16 lines
409 B
TypeScript
16 lines
409 B
TypeScript
|
import * as plugins from './tsdoc.plugins';
|
||
|
|
||
|
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());
|