[go-nuts] Re: Go, VSCODE IDE, Delve debugger: am having problem debugging my console app

2023-02-10 Thread Marcello H
You could try to debug it from within VSC. Op donderdag 9 februari 2023 om 15:19:24 UTC+1 schreef Daniel Jankins: > Hi, I can not get the console app to run with the debugger. When I start > the debugger I do not get the console display only > > Starting: C:\Users\djankins\go\bin\dlv.exe dap

[go-nuts] Re: Go, VSCODE IDE, Delve debugger: am having problem debugging my console app

2023-02-09 Thread Daniel Jankins
Hi, I can not get the console app to run with the debugger. When I start the debugger I do not get the console display only Starting: C:\Users\djankins\go\bin\dlv.exe dap --listen=127.0.0.1:52239 from c:\Users\djankins\Repositories\UT\adpf-simulation\GUI DAP server listening at:

[go-nuts] Re: Go, VSCODE IDE, Delve debugger: am having problem debugging my console app

2018-01-31 Thread evan
hi! thanks for responding! when i hit F5 initially to Start Debugging, the debugger stops at a preset breakpoint. i hit F5 to continue... the Debug Console prints out it's continuing ... nothing happens after ... so i hit F5 to continue again, and again the Debug Console prints out the

[go-nuts] Re: Go, VSCODE IDE, Delve debugger: am having problem debugging my console app

2018-01-31 Thread deparker
Console app as in some sort of GUI application? Also, what actually happens when you run the app under Delve, like when you actually run `continue`? On Wednesday, January 31, 2018 at 6:50:02 AM UTC+1, evan wrote: > > i can debug my web app server code with no problem with the Go, VSCODE, > and