提交 03ad73d1 编写于 作者: I isidor

debug: log error message for debugMisconfiguration event

#16171
上级 5f8d991f
......@@ -732,7 +732,8 @@ export class DebugService implements debug.IDebugService {
return TPromise.as(null);
}
this.telemetryService.publicLog('debugMisconfiguration', { type: configuration ? configuration.type : undefined });
const errorMessage = error instanceof Error ? error.message : error;
this.telemetryService.publicLog('debugMisconfiguration', { type: configuration ? configuration.type : undefined, error: errorMessage });
this.setStateAndEmit(session.getId(), debug.State.Inactive);
if (!session.disconnected) {
session.disconnect().done(null, errors.onUnexpectedError);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册