2019-02-02 16:18:25 +08:00
|
|
|
|
// Copyright 2018 gf Author(https://github.com/gogf/gf). All Rights Reserved.
|
2018-04-19 19:11:10 +08:00
|
|
|
|
//
|
|
|
|
|
// 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,
|
2019-02-02 16:18:25 +08:00
|
|
|
|
// You can obtain one at https://github.com/gogf/gf.
|
2018-04-19 19:11:10 +08:00
|
|
|
|
// 默认错误日志封装.
|
|
|
|
|
|
|
|
|
|
package ghttp
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"fmt"
|
2019-03-22 14:31:02 +08:00
|
|
|
|
"github.com/gogf/gf/g/os/gtime"
|
2018-04-19 19:11:10 +08:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// 处理服务错误信息,主要是panic,http请求的status由access log进行管理
|
|
|
|
|
func (s *Server) handleAccessLog(r *Request) {
|
|
|
|
|
if !s.IsAccessLogEnabled() {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
// 自定义错误处理
|
|
|
|
|
if v := s.GetLogHandler(); v != nil {
|
|
|
|
|
v(r)
|
|
|
|
|
return
|
|
|
|
|
}
|
2019-05-06 09:35:39 +08:00
|
|
|
|
scheme := "http"
|
|
|
|
|
if r.TLS != nil {
|
|
|
|
|
scheme = "https"
|
|
|
|
|
}
|
|
|
|
|
content := fmt.Sprintf(`%d "%s %s %s %s %s"`,
|
2018-09-04 23:40:16 +08:00
|
|
|
|
r.Response.Status,
|
2019-05-06 09:35:39 +08:00
|
|
|
|
r.Method, scheme, r.Host, r.URL.String(), r.Proto,
|
2018-04-29 23:19:02 +08:00
|
|
|
|
)
|
|
|
|
|
content += fmt.Sprintf(` %.3f`, float64(r.LeaveTime - r.EnterTime)/1000)
|
2018-04-20 15:43:02 +08:00
|
|
|
|
content += fmt.Sprintf(`, %s, "%s", "%s"`, r.GetClientIp(), r.Referer(), r.UserAgent())
|
2019-05-21 21:52:17 +08:00
|
|
|
|
s.logger.Cat("access").Backtrace(false, 2).Stdout(s.config.LogStdout).Println(content)
|
2018-04-19 19:11:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 处理服务错误信息,主要是panic,http请求的status由access log进行管理
|
|
|
|
|
func (s *Server) handleErrorLog(error interface{}, r *Request) {
|
2018-10-10 18:39:57 +08:00
|
|
|
|
// 错误输出默认是开启的
|
2019-03-28 09:34:16 +08:00
|
|
|
|
if !s.IsErrorLogEnabled() {
|
2018-04-19 19:11:10 +08:00
|
|
|
|
return
|
|
|
|
|
}
|
2018-10-10 18:39:57 +08:00
|
|
|
|
|
2018-04-19 19:11:10 +08:00
|
|
|
|
// 自定义错误处理
|
|
|
|
|
if v := s.GetLogHandler(); v != nil {
|
|
|
|
|
v(r, error)
|
|
|
|
|
return
|
|
|
|
|
}
|
2018-04-20 11:45:47 +08:00
|
|
|
|
|
2018-10-10 18:39:57 +08:00
|
|
|
|
// 错误日志信息
|
2019-05-06 09:35:39 +08:00
|
|
|
|
scheme := "http"
|
|
|
|
|
if r.TLS != nil {
|
|
|
|
|
scheme = "https"
|
|
|
|
|
}
|
|
|
|
|
content := fmt.Sprintf(`%v, "%s %s %s %s %s"`, error, r.Method, scheme, r.Host, r.URL.String(), r.Proto)
|
2019-03-22 14:31:02 +08:00
|
|
|
|
if r.LeaveTime > r.EnterTime {
|
|
|
|
|
content += fmt.Sprintf(` %.3f`, float64(r.LeaveTime - r.EnterTime)/1000)
|
|
|
|
|
} else {
|
|
|
|
|
content += fmt.Sprintf(` %.3f`, float64(gtime.Microsecond() - r.EnterTime)/1000)
|
|
|
|
|
}
|
2018-04-23 11:20:48 +08:00
|
|
|
|
content += fmt.Sprintf(`, %s, "%s", "%s"`, r.GetClientIp(), r.Referer(), r.UserAgent())
|
2019-05-21 21:52:17 +08:00
|
|
|
|
s.logger.Cat("error").Backtrace(true, 2).Stdout(s.config.LogStdout).Error(content)
|
2018-04-19 19:11:10 +08:00
|
|
|
|
}
|