mirror of
https://gitee.com/johng/gf.git
synced 2024-12-02 12:17:53 +08:00
74 lines
1.9 KiB
Go
74 lines
1.9 KiB
Go
// 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 (
|
|
"fmt"
|
|
|
|
"github.com/gogf/gf/v2/errors/gerror"
|
|
"github.com/gogf/gf/v2/text/gstr"
|
|
)
|
|
|
|
// handleAccessLog handles the access logging for server.
|
|
func (s *Server) handleAccessLog(r *Request) {
|
|
if !s.IsAccessLogEnabled() {
|
|
return
|
|
}
|
|
scheme := "http"
|
|
if r.TLS != nil {
|
|
scheme = "https"
|
|
}
|
|
s.Logger().File(s.config.AccessLogPattern).
|
|
Stdout(s.config.LogStdout).
|
|
Printf(
|
|
r.Context(),
|
|
`%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(),
|
|
)
|
|
}
|
|
|
|
// handleErrorLog handles the error logging for server.
|
|
func (s *Server) handleErrorLog(err error, r *Request) {
|
|
// It does nothing if error logging is custom disabled.
|
|
if !s.IsErrorLogEnabled() {
|
|
return
|
|
}
|
|
var (
|
|
code = gerror.Code(err)
|
|
scheme = "http"
|
|
codeDetail = code.Detail()
|
|
codeDetailStr string
|
|
)
|
|
if r.TLS != nil {
|
|
scheme = "https"
|
|
}
|
|
if codeDetail != nil {
|
|
codeDetailStr = gstr.Replace(fmt.Sprintf(`%+v`, codeDetail), "\n", " ")
|
|
}
|
|
content := fmt.Sprintf(
|
|
`%d "%s %s %s %s %s" %.3f, %s, "%s", "%s", %d, "%s", "%+v"`,
|
|
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(),
|
|
code.Code(), code.Message(), codeDetailStr,
|
|
)
|
|
if s.config.ErrorStack {
|
|
if stack := gerror.Stack(err); stack != "" {
|
|
content += "\nStack:\n" + stack
|
|
} else {
|
|
content += ", " + err.Error()
|
|
}
|
|
} else {
|
|
content += ", " + err.Error()
|
|
}
|
|
s.Logger().File(s.config.ErrorLogPattern).
|
|
Stdout(s.config.LogStdout).
|
|
Print(r.Context(), content)
|
|
}
|