Golang : Debug with Godebug
A quick note on debugging in Golang and the latest tool that a sane Golang developer should check out and use.
No sane programmer will claim to have written bug free programs throughout this her/his career.
A program will not be bug free ... simply because the tool/compiler used to create the program is also not entirely bug free.
A programmer job is to test and debug the program as much as possible.
Just found out about this excellent cross-platform debugging tool created specifically for Golang - Godebug ( https://github.com/mailgun/godebug )
Godebug modifies the code runs and stops at breakpoints. Letting you to step through the program and inspect variables.
Still pretty new and hope to see IDEs integration in future to make it interactive.
Also, good read at http://blog.golang.org/cover and old ways of debugging Go program at http://golang.org/doc/gdb
Reference :
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+12.8k Golang : Calculate elapsed years or months since a date
+8.3k Golang : Another camera capture GUI application with GTK and OpenCV
+14.2k How to automatically restart your crashed Golang server
+7.9k Golang : HttpRouter multiplexer routing example
+12k Golang : 2 dimensional array example
+35.5k Golang : Get file last modified date and time
+9.4k Golang : Find correlation coefficient example
+5.5k Fix yum-complete-transaction error
+30.1k Golang : Generate random string
+5.1k Golang : Return multiple values from function
+7.7k Golang : What fmt.Println() can do and println() cannot do