问题描述
我刚刚发现我的nodejs应用程序一直崩溃,因此我使用forever app.js
来启动我的应用程序,并使其在崩溃时自动重新启动.
I just discovered that my nodejs app keeps crashing, so I've used forever app.js
to start my app and have it automatically restarted when it crashes.
问题::现在,我的应用程序通过console.log
和util.log
运行时会输出很多有用的信息.我曾经使用screen
来运行节点应用程序,但是由于现在我一直在使用它来运行nodejs应用程序,所以我不再能看到所有输出.
Problem: Now my app outputs alot of useful information as it runs via console.log
and util.log
. I used to use screen
to run the node app, but now that I'm using forever to run the nodejs app, I can no longer see all the outputs.
有没有办法实时查看nodejs应用程序的所有输出?
Is there any way to see all the output from the nodejs app in realtime?
推荐答案
您可以使用此shell命令实时观看日志文件.
You can watch a logfile live by using this shell-command.
tail -f /path/to/logfile
不确定这是否是您所需要的.
Not sure if this is what you needed.
这篇关于使用Node.js的Forever将console.logs输出到屏幕的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!