From 201f3b6684eeef3e551c08807fc516b00ba3db70 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 (cherry picked from commit 16db0ee090a88fa1da3a7d989394cfddd2a126d0) --- src/node.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/node.cc b/src/node.cc index c5dc33a0a38..56764dc8710 100644 --- a/src/node.cc +++ b/src/node.cc @@ -2157,9 +2157,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()); - } + // } }