novel-writer-cn
Version:
AI 驱动的中文小说创作工具 - 基于结构化工作流的智能写作助手
21 lines • 638 B
JavaScript
import chalk from 'chalk';
export const logger = {
info: (message, ...args) => {
console.log(chalk.blue('ℹ'), message, ...args);
},
success: (message, ...args) => {
console.log(chalk.green('✓'), message, ...args);
},
warn: (message, ...args) => {
console.log(chalk.yellow('⚠'), message, ...args);
},
error: (message, ...args) => {
console.error(chalk.red('✗'), message, ...args);
},
debug: (message, ...args) => {
if (process.env.DEBUG) {
console.log(chalk.gray('⚙'), message, ...args);
}
}
};
//# sourceMappingURL=logger.js.map