我正在使用“屏幕”工具在服务器上运行Node.js API。
我可以让API运行,因此它可以让所有人看到它,但它偶尔崩溃,并且它总是在屏幕会话不长时间打开时发生,因此我不知道API崩溃的原因。
当我稍后回到该屏幕会话时,是否有办法查看与我的API崩溃原因相关的错误消息?
我已经尝试ctrl+a H
来获取日志,但这不起作用。
答案 0 :(得分:0)
Did you try to start screen with the -L
flag? It will start logging the contents to a log file.
If this does not capture the errors, you can try to use tee
for logging them in bash as described in echo to stderr and tee to log file?