fix #219336 (#219337)

* fix #219336

* fix owner
This commit is contained in:
Sandeep Somavarapu
2024-07-01 16:37:47 +02:00
committed by GitHub
parent 473e348591
commit 2601618162
@@ -431,11 +431,11 @@ class ConfigurationTelemetryContribution extends Disposable implements IWorkbenc
? 'default'
: 'custom';
this.telemetryService.publicLog2<UpdatedSettingEvent, {
owner: 'bpasero';
owner: 'sandy081';
comment: 'This is used to know the new window profile that is being used';
settingValue: { classification: 'SystemMetaData'; purpose: 'FeatureInsight'; comment: 'if the profile is default or not' };
source: { classification: 'SystemMetaData'; purpose: 'FeatureInsight'; comment: 'source of the setting' };
}>('window.systemColorTheme', { settingValue, source });
}>('window.newWindowProfile', { settingValue, source });
return;
}
@@ -445,7 +445,7 @@ class ConfigurationTelemetryContribution extends Disposable implements IWorkbenc
comment: 'This is used to know if extensions are getting auto restarted or not';
settingValue: { classification: 'SystemMetaData'; purpose: 'FeatureInsight'; comment: 'value of the setting' };
source: { classification: 'SystemMetaData'; purpose: 'FeatureInsight'; comment: 'source of the setting' };
}>('window.systemColorTheme', { settingValue: this.getValueToReport(key, target), source });
}>('extensions.autoRestart', { settingValue: this.getValueToReport(key, target), source });
return;
}
}