Skip to content

Commit ae90900

Browse files
author
Sofian Hnaide
committed
fix microsoft#4652: add id to editor action invoked telemetry event
1 parent 4cd1c0f commit ae90900

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/editor/common/commonCodeEditor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -553,7 +553,7 @@ export abstract class CommonCodeEditor extends EventEmitter implements IActionPr
553553
var candidate = this.getAction(handlerId);
554554
if(candidate !== null) {
555555
if (candidate.enabled) {
556-
this._telemetryService.publicLog('editorActionInvoked', {name: candidate.label} );
556+
this._telemetryService.publicLog('editorActionInvoked', {name: candidate.label, id: candidate.id} );
557557
TPromise.as(candidate.run()).done(null, onUnexpectedError);
558558
}
559559
} else {

0 commit comments

Comments
 (0)