1 Star 1 Fork 1

海风/gin-ex

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
log.go 612 Bytes
一键复制 编辑 原始数据 按行查看 历史
海风 提交于 2024-03-28 11:09 . 新增: QryParam, PutParam, PostParam
package ge
import (
"time"
"github.com/gin-gonic/gin"
"github.com/sirupsen/logrus"
)
func Logger(c *gin.Context) {
// 开始时间
startTime := time.Now()
// 处理请求
c.Next()
// 结束时间
endTime := time.Now()
// 执行时间
latencyTime := endTime.Sub(startTime)
// 请求方式
reqMethod := c.Request.Method
// 请求路由
reqUri := c.Request.RequestURI
// 状态码
statusCode := c.Writer.Status()
// 请求IP
clientIP := c.ClientIP()
// 日志格式
logrus.Infof("| %3d | %13v | %15s | %s | %s |",
statusCode,
latencyTime,
clientIP,
reqMethod,
reqUri,
)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/haifengat/gin-ex.git
git@gitee.com:haifengat/gin-ex.git
haifengat
gin-ex
gin-ex
v2.0.3

搜索帮助