Bug! Should've ignored format string in logs
CaledoniaProject opened this issue · 3 comments
CaledoniaProject commented
Minimal case,
func main () {
log.Println ("Hello There! %Y %s", "123")
}
And you will see this in fresh,
15:24:52 app | 2016/05/16 15:24:52 Hello There! %!Y(MISSING) %!s(MISSING) 123
gravityblast commented
@CaledoniaProject you are right, but everything is used in the string format for now. feel free to open a PR if you want to fix it :)
CraigChilds94 commented
👍