1
0
mirror of https://github.com/labstack/echo.git synced 2025-07-09 01:15:54 +02:00

Logging middleware fixes

Signed-off-by: Vishal Rana <vr@labstack.com>
This commit is contained in:
Vishal Rana
2016-03-21 17:27:14 -07:00
parent 703174e58f
commit a66162a3d2
16 changed files with 153 additions and 155 deletions

View File

@ -158,6 +158,6 @@ type (
)
// ServeHTTP serves HTTP request.
func (h HandlerFunc) ServeHTTP(req Request, res Response) {
h(req, res)
func (h HandlerFunc) ServeHTTP(rq Request, rs Response) {
h(rq, rs)
}