Skip to content

Commit 8d88010

Browse files
joyeecheungtargos
authored andcommitted
src: try showing stack traces when process._fatalException is not set
So that the stack trace of errors shown in internal code run during bootstrap (before process._fatalException is set) can be printed. PR-URL: #29624 Refs: #29593 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
1 parent 2ea4cc0 commit 8d88010

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/node_errors.cc

+2
Original file line numberDiff line numberDiff line change
@@ -324,6 +324,8 @@ static void ReportFatalException(Environment* env,
324324
break;
325325
}
326326
case EnhanceFatalException::kDontEnhance: {
327+
USE(err_obj->Get(env->context(), env->stack_string())
328+
.ToLocal(&stack_trace));
327329
report_to_inspector();
328330
break;
329331
}

0 commit comments

Comments
 (0)