Skip to content

Commit

Permalink
debug: announce run without debugging differently (#194850)
Browse files Browse the repository at this point in the history
Fixes #193790
  • Loading branch information
connor4312 authored Oct 4, 2023
1 parent bf2ab76 commit 3462325
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/vs/workbench/contrib/debug/browser/debugSession.ts
Original file line number Diff line number Diff line change
Expand Up @@ -951,7 +951,12 @@ export class DebugSession implements IDebugSession, IDisposable {
}

this.rawListeners.add(this.raw.onDidInitialize(async () => {
aria.status(localize('debuggingStarted', "Debugging started."));
aria.status(
this.configuration.noDebug
? localize('debuggingStartedNoDebug', "Started running without debugging.")
: localize('debuggingStarted', "Debugging started.")
);

const sendConfigurationDone = async () => {
if (this.raw && this.raw.capabilities.supportsConfigurationDoneRequest) {
try {
Expand Down

0 comments on commit 3462325

Please sign in to comment.