Ver código fonte

修改gin log中间件

yjp 1 ano atrás
pai
commit
e65be5d87a
1 arquivos alterados com 6 adições e 2 exclusões
  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 {