Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我最近发现我有很多日志消息,格式字符串和参数不完全匹配。默认情况下(我使用的是 go 1.6)编译器似乎没有报告此类问题。
我可以为 go 编译时验证或任何其他静态代码分析工具激活此类检查,以检测格式化字符串和参数之间的不匹配吗?
注意 golint 似乎也没有报告此类问题。
vet 命令报告格式字符串错误。 vet 命令包含在 Go 1.6 发行版中。