diff --git a/src/vs/workbench/node/pluginHostProcess.ts b/src/vs/workbench/node/pluginHostProcess.ts index 15af96acb6e0c..03b9c9bd74609 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('potentially unhandled rejected promise', promise); + console.warn('potentially unhandled rejected promise', promise); onUnexpectedError(reason); });