...

/

Debugging

Debugging

This lesson discusses how errors can be tracked and removed when programming in Go.

We'll cover the following...

Debuggers in Go

Application programming needs excellent debugging support. Most bigger IDEs provide this kind of support. To use the debugger in Visual Studio Code, you must currently manually install delve (see the Installation Instructions for full details). On macOS, it requires creating a self-signed cert to sign the dlv binary. An explanation on how to get running with debugging can be found here: ...