UNPKG

tencentcloud-edgeone-migration-nodejs-v2

Version:

tencentcloud cdn config copy to edgeone

19 lines (16 loc) 320 B
const chalk = require("chalk"); const logger = { warn: (msg) => { console.log(chalk.yellow.bold(msg)); }, error: (msg) => { console.log(chalk.red.bold(msg)); }, info: (msg) => { console.log(msg); }, success: (msg) => { console.log(chalk.green.bold(msg)); }, }; module.exports = logger;