remove console.error on commands for noisy tests

See #113905
This commit is contained in:
Connor Peet
2021-01-06 08:57:00 -08:00
parent 6763d82fdd
commit 1ace7e3499

View File

@@ -213,7 +213,6 @@ export class ExtHostCommands implements ExtHostCommandsShape {
try {
return await callback.apply(thisArg, args);
} catch (err) {
console.error(err); // so that it shows up in any attached debugger
this._logService.error(err, id);
throw new Error(`Running the contributed command: '${id}' failed.`);
}