I am using Visual Studio Code to debug a Golang project, and I have no idea how to read the value of a pointer to time.Time variable.
Here is an example:
I am not sure what wall, ext, loc
stand for, and the only way I can read the value here is to add a log command:
log.Infof("%v", paymentAt.Format("20060102"))
Is there a better way to view the value while debugging?