diff --git a/net/ghttp/ghttp_request.go b/net/ghttp/ghttp_request.go index c5d998dbf..7c61f8fd0 100644 --- a/net/ghttp/ghttp_request.go +++ b/net/ghttp/ghttp_request.go @@ -31,8 +31,8 @@ type Request struct { Session *gsession.Session // Session. Response *Response // Corresponding Response of this request. Router *Router // Matched Router for this request. Note that it's not available in HOOK handler. - EnterTime int64 // Request starting time in microseconds. - LeaveTime int64 // Request to end time in microseconds. + EnterTime int64 // Request starting time in milliseconds. + LeaveTime int64 // Request to end time in milliseconds. Middleware *middleware // Middleware manager. StaticFile *staticFile // Static file object for static file serving.