admin管理员组文章数量:1347158
when I ran this test, put the breakpoint to fmt.Println this statement
func TestName(t *testing.T) {
fmt.Println("123")
}
it jumped to proc.go every time, how can I solve this problem?
Tried to update delve(dlv), put it to goland custom propertity, but it didn't work
My Go version: 1.22.7 GoLand version: 2024.3.5
when I ran this test, put the breakpoint to fmt.Println this statement
func TestName(t *testing.T) {
fmt.Println("123")
}
it jumped to proc.go every time, how can I solve this problem?
Tried to update delve(dlv), put it to goland custom propertity, but it didn't work
My Go version: 1.22.7 GoLand version: 2024.3.5
Share Improve this question asked 2 days ago FlyingBurgerFlyingBurger 1,4022 gold badges19 silver badges21 bronze badges 2 |1 Answer
Reset to default -1Stepping into the Go SDK's internals after the program finishes is expected in this case. The debugger continues to operate even after your program's code has completed. We are considering a feature to hide these internal debugger steps from the user if the user requests it, so it appears that the debugger stops cleanly after your program finishes. Here is a feature request tracking this improvement: https://youtrack.jetbrains/issue/GO-10534
本文标签: ideDebugger goes into procgo at every stepStack Overflow
版权声明:本文标题:ide - Debugger goes into proc.go at every step - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743833065a2546884.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
gopark
function insideproc.go
. If no breakpoint is set, it runs green. To be clear: It never stops at any user set breakpoint. – Tormod Haugene Commented yesterday