tsbundle/ts/tsbundle.logging.ts

16 lines
412 B
TypeScript
Raw Normal View History

2019-05-06 12:00:21 +00:00
import * as plugins from './tsbundle.plugins';
export const logger = new plugins.smartlog.Smartlog({
logContext: {
company: 'Some Company',
companyunit: 'Some CompanyUnit',
containerName: 'Some Containername',
2019-06-16 15:02:38 +00:00
environment: 'local',
2019-05-06 12:00:21 +00:00
runtime: 'node',
zone: 'gitzone'
},
minimumLogLevel: 'silly'
});
logger.addLogDestination(new plugins.smartlogDestinationLocal.DestinationLocal());