This commit is contained in:
Logan Ramos 2021-11-24 13:44:42 -05:00
parent eeae10e56c
commit 57ca9b99d5
No known key found for this signature in database
GPG key ID: D9CCFF14F0B18183

View file

@ -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) });
});
});
}