Skip to content

Commit

Permalink
Merge pull request #2035 from codefori/debug/debugSessionName
Browse files Browse the repository at this point in the history
Put debugged program name in IBM i batch debug session
  • Loading branch information
worksofliam authored May 10, 2024
2 parents 3f7c805 + 4929603 commit 7b8cff8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/debug/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ export async function startDebug(instance: Instance, options: DebugOptions) {
const debugConfig = {
"type": `IBMiDebug`,
"request": `launch`,
"name": `Remote debug: Launch a batch debug session`,
"name": `IBM i batch debug: program ${options.library.toUpperCase()}/${options.object.toUpperCase()}`,
"user": connection!.currentUser.toUpperCase(),
"password": options.password,
"host": connection!.currentHost,
Expand Down

0 comments on commit 7b8cff8

Please sign in to comment.