mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-30 17:28:52 -05:00
Fix #137703
This commit is contained in:
@@ -302,7 +302,7 @@ export class ExperimentService extends Disposable implements IExperimentService
|
||||
type ExperimentsClassification = {
|
||||
experiments: { classification: 'SystemMetaData', purpose: 'FeatureInsight'; };
|
||||
};
|
||||
this.telemetryService.publicLog2<{ experiments: IExperiment[]; }, ExperimentsClassification>('experiments', { experiments: this._experiments });
|
||||
this.telemetryService.publicLog2<{ experiments: string[]; }, ExperimentsClassification>('experiments', { experiments: this._experiments.map(e => e.id) });
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user