Tracepoint in Goland
I use dlv debugger with Goland for remote debugging. I would like to know if there is any tracepoint instead of breakpoint to use in Goland IDE? The idea is to avoid pausing the system which is running.
Please sign in to leave a comment.
Have you tried right-clicking on the breakpoint and unchecking "Suspend"?
I just tried and it works but it just passes the breakpoints and we cannot see the values correct?
I think we should use evaluate and log for that purpose.
You are correct. `Evaluate and log` coupled with the `Suspend` feature will provide the information you need, much like a tracepoint.