File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -31,11 +31,11 @@ class AnalyticsCommand implements ICommand {
31
31
switch ( arg . toLowerCase ( ) ) {
32
32
case "enable" :
33
33
await this . $analyticsService . setStatus ( this . settingName , true ) ;
34
- // await this.$analyticsService.track(this.settingName, "enabled");
34
+ // TODO(Analytics): await this.$analyticsService.track(this.settingName, "enabled");
35
35
this . $logger . info ( `${ this . humanReadableSettingName } is now enabled.` ) ;
36
36
break ;
37
37
case "disable" :
38
- // await this.$analyticsService.track(this.settingName, "disabled");
38
+ // TODO(Analytics): await this.$analyticsService.track(this.settingName, "disabled");
39
39
await this . $analyticsService . setStatus ( this . settingName , false ) ;
40
40
this . $logger . info ( `${ this . humanReadableSettingName } is now disabled.` ) ;
41
41
break ;
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ export abstract class ProxyCommandBase implements ICommand {
12
12
13
13
protected async tryTrackUsage ( ) {
14
14
try {
15
- // TODO: Check why we have set the `disableAnalytics` to true and we track the command as separate one
15
+ // TODO(Analytics) : Check why we have set the `disableAnalytics` to true and we track the command as separate one
16
16
// instead of tracking it through the commandsService.
17
17
this . $logger . trace ( this . commandName ) ;
18
18
// await this.$analyticsService.trackFeature(this.commandName);
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ class DoctorService implements IDoctorService {
31
31
}
32
32
33
33
if ( ! configOptions || configOptions . trackResult ) {
34
- // TODO: Consider sending this information to Google Analytics
34
+ // TODO(Analytics) : Consider sending this information to Google Analytics
35
35
// await this.$analyticsService.track("DoctorEnvironmentSetup", hasWarnings ? "incorrect" : "correct");
36
36
}
37
37
You can’t perform that action at this time.
0 commit comments