gravityblast/fresh

Bug! Should've ignored format string in logs

CaledoniaProject opened this issue · 3 comments

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

@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 :)

@pilu I made a PR for this (#54), please consider ^^