Skip to content

Commit

Permalink
Remove unneeded telemetry log
Browse files Browse the repository at this point in the history
  • Loading branch information
Rachel Macfarlane committed Nov 8, 2019
1 parent f44dc08 commit 8fd2f09
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/vs/code/electron-browser/issue/issueReporterMain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1119,16 +1119,6 @@ export class IssueReporter extends Disposable {
if (element) {
return element;
} else {
const error = new Error(`${elementId} not found.`);
this.logService.error(error);
type IssueReporterGetElementErrorClassification = {
message: { classification: 'CallstackOrException', purpose: 'PerformanceAndHealth' };
};
type IssueReporterGetElementErrorEvent = {
message: string;
};
this.telemetryService.publicLog2<IssueReporterGetElementErrorEvent, IssueReporterGetElementErrorClassification>('issueReporterGetElementError', { message: error.message });

return undefined;
}
}
Expand Down

0 comments on commit 8fd2f09

Please sign in to comment.