有什么方法可以使Warn功能起作用吗?
func Warn(s string, args ...interface{}) {
log.Printf("warn: "+s, args)
}
func main() {
Warn("%d apples, %s ", 10, "good") //it should output the same as below
log.Printf("%d apples, %s ", 10, "good")
}
输出:
2009/11/10 23:00:00 warn: [10 %!d(string=good)] apples, %s(MISSING)
2009/11/10 23:00:00 10 apples, good
我正在努力做到这一点:http://play.golang.org/p/W62f2NGDUe
答案 0 :(得分:8)
知道了:
func Warn(s string, args ...interface{}) {
log.Printf("warn: "+s, args...)
}
现在可行。