cloudly/ts/logger.ts

17 lines
329 B
TypeScript
Raw Permalink Normal View History

import * as plugins from './plugins.js';
import * as paths from './paths.js';
2024-04-20 10:21:41 +00:00
export const logger = new plugins.smartlog.Smartlog({
logContext: {
company: null,
environment: null,
runtime: null,
zone: null,
companyunit: null,
containerName: null,
}
});
logger.enableConsole({
captureAll: false
});