为了账号安全,请及时绑定邮箱和手机立即绑定

如何在 go test 中设置日志级别?

如何在 go test 中设置日志级别?

Go
holdtom 2022-01-17 18:05:51
我正在使用以下方法运行单元测试: godep go test -v -run TestMyCode,但我没有找到在我的测试中显示我的信息日志的方法:glog.V(4).Infof("Adding new pods from source %s : %v", source, update.Pods)是否可以?
查看完整描述

1 回答

?
慕容3067478

TA贡献1773条经验 获得超3个赞

您可以通过设置一些标志将消息记录到控制台。在 init() 函数中尝试以下代码。


flag.Set("alsologtostderr", fmt.Sprintf("%t", true))

var logLevel string

flag.StringVar(&logLevel, "logLevel", "4", "test")

flag.Lookup("v").Value.Set(logLevel)


查看完整回答
反对 回复 2022-01-17
  • 1 回答
  • 0 关注
  • 215 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信