gpt4 book ai didi

Node.js 不会在 uncaughtException 上显示整个错误消息,这可能吗?

转载 作者:IT老高 更新时间:2023-10-28 22:00:12 25 4
gpt4 key购买 nike

如果你在 node.js 中捕获了 uncaughtExceptions,像这样:

process.on('uncaughtException', function (error) {
console.log(error);
});

如果您没有发现错误而只是让进程崩溃,则显示的错误消息不包含您收到的所有信息。当您让进程崩溃时,它包括导致错误的行。有什么方法可以获取完整的错误消息,包括导致错误的行,以便我们可以使用 uncaughtException 记录这些数据。

最佳答案

试试error.stack

process.on('uncaughtException', function (error) {
console.log(error.stack);
});

关于Node.js 不会在 uncaughtException 上显示整个错误消息,这可能吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9181027/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com