Explorar o código

修改gin log中间件

yjp hai 1 ano
pai
achega
e65be5d87a
Modificáronse 1 ficheiros con 6 adicións e 2 borrados
  1. 6 2
      gin_logger.go

+ 6 - 2
gin_logger.go

@@ -6,9 +6,13 @@ import (
 	"time"
 )
 
-func GinLogger() gin.HandlerFunc {
+func GinLogger(skipPaths []string) gin.HandlerFunc {
 	lazyInitialize()
-	return ginzap.Ginzap(logger, time.RFC3339, true)
+	return ginzap.GinzapWithConfig(logger, &ginzap.Config{
+		TimeFormat: time.RFC3339,
+		UTC:        true,
+		SkipPaths:  skipPaths,
+	})
 }
 
 func GinRecovery() gin.HandlerFunc {