File tree Expand file tree Collapse file tree
src/vs/workbench/parts/performance/electron-browser Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -41,11 +41,11 @@ export class StartupTimings implements IWorkbenchContribution {
4141
4242 private async _report ( ) {
4343 const isStandardStartup = await this . _isStandardStartup ( ) ;
44- this . _reportStartupTimes ( isStandardStartup ) . catch ( onUnexpectedError ) ;
44+ this . _reportStartupTimes ( ) . catch ( onUnexpectedError ) ;
4545 this . _appendStartupTimes ( isStandardStartup ) . catch ( onUnexpectedError ) ;
4646 }
4747
48- private async _reportStartupTimes ( isStandardStartup : boolean ) : Promise < void > {
48+ private async _reportStartupTimes ( ) : Promise < void > {
4949 const metrics = await this . _timerService . startupMetrics ;
5050
5151 /* __GDPR__
@@ -56,15 +56,6 @@ export class StartupTimings implements IWorkbenchContribution {
5656 }
5757 */
5858 this . _telemetryService . publicLog ( 'startupTimeVaried' , metrics ) ;
59-
60- /* __GDPR__
61- "startupTime" : {
62- "${include}": [
63- "${IStartupMetrics}"
64- ]
65- }
66- */
67- this . _telemetryService . publicLog ( 'startupTime' , metrics ) ;
6859 }
6960
7061 private async _appendStartupTimes ( isStandardStartup : boolean ) {
You can’t perform that action at this time.
0 commit comments