UNPKG

adpa-enterprise-framework-automation

Version:

Modular, standards-compliant Node.js/TypeScript automation framework for enterprise requirements, project, and data management. Provides CLI and API for BABOK v3, PMBOK 7th Edition, and DMBOK 2.0 (in progress). Production-ready Express.js API with TypeSpe

12 lines 427 B
import * as winston from 'winston'; const logger = winston.createLogger({ level: 'info', format: winston.format.combine(winston.format.colorize(), winston.format.timestamp(), winston.format.printf(({ timestamp, level, message }) => { return `[${timestamp}] ${level}: ${message}`; })), transports: [ new winston.transports.Console() ] }); export { logger }; //# sourceMappingURL=logger.js.map