Skip to content

Commit 2f0623c

Browse files
committed
test/integration/goDebug: fix the console log message
Currently it logs `Setting up attach request for [object Object].` Change-Id: I6abdec35fefe847234b7de1e48708ef8475f7c75 Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/269138 Trust: Hyang-Ah Hana Kim <[email protected]> Reviewed-by: Suzy Mueller <[email protected]>
1 parent e13228d commit 2f0623c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/integration/goDebug.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ suite('Go Debug Adapter', function () {
357357
// an initialized event.
358358
await Promise.all([
359359
new Promise(async (resolve) => {
360-
console.log(`Setting up attach request for ${debugConfig}.`);
360+
console.log(`Setting up attach request for ${JSON.stringify(debugConfig)}.`);
361361
const attachResult = await dc.attachRequest(debugConfig as DebugProtocol.AttachRequestArguments);
362362
assert.ok(attachResult.success);
363363
resolve();

0 commit comments

Comments
 (0)