我有一个在 Google App Engine 灵活环境上运行的 NodeJS 应用程序。已处理的错误列在 Google Cloud Console 的错误报告列表中。我想禁用/防止报告已处理的错误,因为这些错误已由应用程序处理。为了更好地了解下面的代码
function testError() {
throw new Error(`Some Error has Occurred`);
}
function wrapper() {
try {
testError(); // this throws error
} catch (e) {
console.log(e);
// error is gracefully handled here, I don't want google to report this.
}
}