-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: remove fileTransport from consoleLogger #6
Conversation
|
||
if (this.options.errorFile) { | ||
const fileTransport = new FileTransport({ | ||
file: this.options.errorFile, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
master 的日志不再输出到 common error 了?那监控还得加上对 stderr 的日志了,这个日志目前监控平台是没有默认加的,要每个应用加,不太好吧。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
好像也没法写得 common error,要不然 master 也得接收 reload log 的事件。。。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这个挺麻烦的,原因是 master 不会去 load config 了,所以就无法配置了。
但想想也对,master 进程不应该去管理这个,我们现在有些错误其实也是在 stderr 的,比如 master 意外退出,感觉监控 stderr 更加好。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
嗯,到时候得找找监控的同学,看看能否默认将 stderr 也监控了。
+1 |
这个怎么发呢?算 minor? |
因为原来的实现其实是有问题的,会导致写文件失败,那个打开的文件已经被删除了。 |
发 minor |
发 minor 吧 |
1.2.0 |
Relate eggjs/egg#33