Skip to content

Commit

Permalink
adjust rejection log message
Browse files Browse the repository at this point in the history
  • Loading branch information
jrieken committed Nov 27, 2015
1 parent c03d38e commit 5999042
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/workbench/node/pluginHostProcess.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function connectToRenderer(): TPromise<IRendererConnection> {
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);
});

Expand Down

0 comments on commit 5999042

Please sign in to comment.