smartlog/ts/index.ts
2018-10-31 18:51:54 +01:00

15 lines
370 B
TypeScript

import * as plugins from './smartlog.plugins';
import { Smartlog } from './smartlog.classes.smartlog';
const defaultLogger: Smartlog = new Smartlog({
logContext: {
company: 'undefined',
companyunit: 'undefefined',
containerName: 'undefined',
environment: 'local',
runtime: 'node',
zone: 'undefined'
}
});
export { Smartlog, defaultLogger };