Visual Studio代码-Golang调试:如何查看指针time.Time的值?

时间:2019-05-10 04:26:40

标签: debugging go visual-studio-code

我正在使用Visual Studio Code调试Golang项目,而且我不知道如何读取指向time.Time变量的指针的值。

这里是一个例子:

enter image description here

我不确定wall, ext, loc代表什么,在这里读取值的唯一方法是添加一个log命令:

log.Infof("%v", paymentAt.Format("20060102"))

在调试时是否有更好的方法查看值?

1 个答案:

答案 0 :(得分:3)

目前不行。在后台,Visual Studio Code使用delve进行调试,并且他们有公开的请求来添加此功能:

https://github.com/go-delve/delve/issues/999