mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 11:18:50 +08:00
85 lines
2.5 KiB
Go
85 lines
2.5 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/internal/instance"
|
|
"github.com/gogf/gf/v2/os/glog"
|
|
"github.com/gogf/gf/v2/text/gstr"
|
|
)
|
|
|
|
// handleAccessLog handles the access logging for server.
|
|
func (s *Server) handleAccessLog(r *Request) {
|
|
if !s.IsAccessLogEnabled() {
|
|
return
|
|
}
|
|
var (
|
|
scheme = r.GetSchema()
|
|
loggerInstanceKey = fmt.Sprintf(`Acccess Logger Of Server:%s`, s.instance)
|
|
)
|
|
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.Sub(r.EnterTime).Milliseconds())/1000,
|
|
r.GetClientIp(), r.Referer(), r.UserAgent(),
|
|
)
|
|
logger := instance.GetOrSetFuncLock(loggerInstanceKey, func() interface{} {
|
|
l := s.Logger()
|
|
l.SetFile(s.config.AccessLogPattern)
|
|
l.SetStdoutPrint(s.config.LogStdout)
|
|
l.SetLevelPrint(false)
|
|
return l
|
|
}).(*glog.Logger)
|
|
logger.Print(r.Context(), content)
|
|
}
|
|
|
|
// 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 = r.GetSchema()
|
|
codeDetail = code.Detail()
|
|
loggerInstanceKey = fmt.Sprintf(`Error Logger Of Server:%s`, s.instance)
|
|
codeDetailStr string
|
|
)
|
|
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.Sub(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()
|
|
}
|
|
logger := instance.GetOrSetFuncLock(loggerInstanceKey, func() interface{} {
|
|
l := s.Logger()
|
|
l.SetStack(false)
|
|
l.SetFile(s.config.ErrorLogPattern)
|
|
l.SetStdoutPrint(s.config.LogStdout)
|
|
l.SetLevelPrint(false)
|
|
return l
|
|
}).(*glog.Logger)
|
|
logger.Error(r.Context(), content)
|
|
}
|