diff --git a/src/vs/workbench/parts/debug/electron-browser/debugService.ts b/src/vs/workbench/parts/debug/electron-browser/debugService.ts index 0aa39281f5958244bdd9ef1631e1b04496564d52..58cdf72e367372aaa851e6c08b3e590c6dc73822 100644 --- a/src/vs/workbench/parts/debug/electron-browser/debugService.ts +++ b/src/vs/workbench/parts/debug/electron-browser/debugService.ts @@ -225,7 +225,7 @@ export class DebugService extends ee.EventEmitter implements debug.IDebugService private registerSessionListeners(): void { this.toDispose.push(this.session.addListener2(debug.SessionEvents.INITIALIZED, (event: DebugProtocol.InitializedEvent) => { - aria.alert(nls.localize('debuggingStarted', "Debugging started.")); + aria.status(nls.localize('debuggingStarted', "Debugging started.")); this.sendAllBreakpoints().then(() => { if (this.session.capabilities.supportsConfigurationDoneRequest) { this.session.configurationDone().done(null, errors.onUnexpectedError); @@ -255,7 +255,7 @@ export class DebugService extends ee.EventEmitter implements debug.IDebugService })); this.toDispose.push(this.session.addListener2(debug.SessionEvents.CONTINUED, () => { - aria.alert(nls.localize('debuggingContinued', "Debugging continued.")); + aria.status(nls.localize('debuggingContinued', "Debugging continued.")); this.model.clearThreads(false); this.setFocusedStackFrameAndEvaluate(null); this.setStateAndEmit(this.configurationManager.getConfiguration().noDebug ? debug.State.RunningNoDebug : debug.State.Running); @@ -278,7 +278,7 @@ export class DebugService extends ee.EventEmitter implements debug.IDebugService })); this.toDispose.push(this.session.addListener2(debug.SessionEvents.DEBUGEE_TERMINATED, (event: DebugProtocol.TerminatedEvent) => { - aria.alert(nls.localize('debuggingStopped', "Debugging stopped.")); + aria.status(nls.localize('debuggingStopped', "Debugging stopped.")); if (this.session && this.session.getId() === (event).sessionId) { if (event.body && typeof event.body.restart === 'boolean' && event.body.restart) { this.restartSession().done(null, err => this.messageService.show(severity.Error, err.message)); @@ -520,7 +520,7 @@ export class DebugService extends ee.EventEmitter implements debug.IDebugService } }); } - + configuration.noDebug = noDebug; if (!this.configurationManager.getAdapter()) { this.emit(debug.ServiceEvents.TYPE_NOT_SUPPORTED, configuration.type);