From b99baeb1f54710d026dd27cd86e284bf1e1bc5c2 Mon Sep 17 00:00:00 2001 From: meganrogge Date: Thu, 19 Oct 2023 10:50:48 -0700 Subject: [PATCH] fix #195998 --- .../accessibility/browser/accessibleNotificationService.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/vs/workbench/contrib/accessibility/browser/accessibleNotificationService.ts b/src/vs/workbench/contrib/accessibility/browser/accessibleNotificationService.ts index 7e8503931d9..407af81c487 100644 --- a/src/vs/workbench/contrib/accessibility/browser/accessibleNotificationService.ts +++ b/src/vs/workbench/contrib/accessibility/browser/accessibleNotificationService.ts @@ -53,7 +53,6 @@ export class AccessibleNotificationService extends Disposable implements IAccess const audioCueSetting: NotificationSetting = this._configurationService.getValue(audioCue.settingsKey); if (this._shouldNotify(audioCueSetting, userGesture)) { this._logService.debug('AccessibleNotificationService playing sound: ', audioCue.name); - console.log('AccessibleNotificationService playing sound: ', audioCue.name); // Play sound bypasses the usual audio cue checks IE screen reader optimized, auto, etc. this._audioCueService.playSound(audioCue.sound.getSound(), true); return; @@ -61,7 +60,6 @@ export class AccessibleNotificationService extends Disposable implements IAccess const alertSettingValue: NotificationSetting = this._configurationService.getValue(alertSetting); if (this._shouldNotify(alertSettingValue, userGesture)) { this._logService.debug('AccessibleNotificationService alerting: ', alertMessage); - console.log('AccessibleNotificationService alerting: ', alertMessage); this._accessibilityService.alert(alertMessage); } }