Fix not to pass formatted string to Fprintf's format specifier parameter

This commit is contained in:
sairoutine 2019-01-19 20:25:02 +09:00
parent 4867ff9634
commit f5c1bd1f68

View File

@ -191,7 +191,7 @@ func LoggerWithConfig(conf LoggerConfig) HandlerFunc {
param.Path = path param.Path = path
fmt.Fprintf(out, formatter(param)) fmt.Fprint(out, formatter(param))
} }
} }
} }