sunfuze / egg-knex

knex plugin for egg
MIT License
57 stars 15 forks source link

自定义logger输出 #5

Closed callmez closed 7 years ago

callmez commented 7 years ago

现在的日志是在coreLogger 在开发的时候会想输出在console里, 能不能像egg-sequelize一样可以自定义日志输出. 默认也是输出到app.logger. 这样方便调试. 不需要去文件里查看.

谢谢!

sunfuze commented 7 years ago

2.0.2 版本会把日志输出到 logs/egg-knex.log,同时会在console输出。你也可以自定义 custom logger:

exports.customLogger = {
   knex: {
      file: path.join(app.root, 'logs/egg-knex.log')  // 可以自行在 config.${env}.js 中修改
    }
}

@okoala 发下版本

okoala commented 7 years ago

done

okoala commented 7 years ago

@sunfuze 发你的 npm 账号我,我添加你权限

sunfuze commented 7 years ago

@okoala 账号应该就是 sunfuze

okoala commented 7 years ago

好了