From 59990425dd50928487c68c114d2b91a9eb9cc388 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Fri, 27 Nov 2015 08:58:16 +0100 Subject: [PATCH] adjust rejection log message --- src/vs/workbench/node/pluginHostProcess.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/node/pluginHostProcess.ts b/src/vs/workbench/node/pluginHostProcess.ts index c62d4267abbac..15af96acb6e0c 100644 --- a/src/vs/workbench/node/pluginHostProcess.ts +++ b/src/vs/workbench/node/pluginHostProcess.ts @@ -36,7 +36,7 @@ function connectToRenderer(): TPromise { process.on('unhandledRejection', function(reason, promise) { // 'promise' seems to be undefined all the time and // that's why we cannot use the rejectionhandled event - console.error('unhandled rejected promise', promise); + console.error('potentially unhandled rejected promise', promise); onUnexpectedError(reason); });