From a038b70c7bdd5b95c2f07c1c67430d9616ad5abe Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Tue, 11 Jul 2017 14:35:15 -0700 Subject: [PATCH] Comment out TryCatch::IsVerbose call --- src/node.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/node.cc b/src/node.cc index 0305afc878e..78d37d93d64 100644 --- a/src/node.cc +++ b/src/node.cc @@ -2713,9 +2713,9 @@ void FatalException(Isolate* isolate, void FatalException(Isolate* isolate, const TryCatch& try_catch) { HandleScope scope(isolate); - if (!try_catch.IsVerbose()) { + // if (!try_catch.IsVerbose()) { FatalException(isolate, try_catch.Exception(), try_catch.Message()); - } + // } }