gf/net/ghttp/ghttp_server_log.go

66 lines
1.6 KiB
Go
Raw Normal View History

2020-12-30 13:18:43 +08:00
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
//
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://github.com/gogf/gf.
package ghttp
import (
2019-06-19 09:06:52 +08:00
"fmt"
2021-11-13 23:23:55 +08:00
2021-10-11 21:41:56 +08:00
"github.com/gogf/gf/v2/errors/gerror"
)
2020-05-07 23:05:33 +08:00
// handleAccessLog handles the access logging for server.
func (s *Server) handleAccessLog(r *Request) {
2019-06-19 09:06:52 +08:00
if !s.IsAccessLogEnabled() {
return
}
scheme := "http"
if r.TLS != nil {
scheme = "https"
}
2021-09-27 21:27:24 +08:00
s.Logger().File(s.config.AccessLogPattern).
2019-12-25 21:22:06 +08:00
Stdout(s.config.LogStdout).
Printf(
2021-09-27 21:27:24 +08:00
r.Context(),
2019-12-25 21:22:06 +08:00
`%d "%s %s %s %s %s" %.3f, %s, "%s", "%s"`,
r.Response.Status,
r.Method, scheme, r.Host, r.URL.String(), r.Proto,
float64(r.LeaveTime-r.EnterTime)/1000,
r.GetClientIp(), r.Referer(), r.UserAgent(),
)
}
2020-05-07 23:05:33 +08:00
// handleErrorLog handles the error logging for server.
func (s *Server) handleErrorLog(err error, r *Request) {
2020-05-07 23:05:33 +08:00
// It does nothing if error logging is custom disabled.
2019-06-19 09:06:52 +08:00
if !s.IsErrorLogEnabled() {
return
}
scheme := "http"
if r.TLS != nil {
scheme = "https"
}
content := fmt.Sprintf(
`%d "%s %s %s %s %s" %.3f, %s, "%s", "%s"`,
r.Response.Status, r.Method, scheme, r.Host, r.URL.String(), r.Proto,
float64(r.LeaveTime-r.EnterTime)/1000,
r.GetClientIp(), r.Referer(), r.UserAgent(),
)
if s.config.ErrorStack {
if stack := gerror.Stack(err); stack != "" {
content += "\nStack:\n" + stack
} else {
content += ", " + err.Error()
}
} else {
content += ", " + err.Error()
}
2021-09-27 21:27:24 +08:00
s.Logger().File(s.config.ErrorLogPattern).
Stdout(s.config.LogStdout).
2021-09-27 21:27:24 +08:00
Print(r.Context(), content)
}