提交 fe9bc04a 编写于 作者: I isidor

debug: respect showUser flag in errors

fixes #5828
上级 4399bae1
......@@ -148,6 +148,9 @@ export class RawDebugSession extends v8.V8Protocol implements debug.IRawDebugSes
this.telemetryService.publicLog('debugProtocolErrorResponse', { error: message });
this.telemtryAdapter.log('debugProtocolErrorResponse', { error: message });
}
if (error && error.showUser === false) {
return TPromise.as(null);
}
if (error && error.url) {
const label = error.urlLabel ? error.urlLabel : nls.localize('moreInfo', "More Info");
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册