diff --git a/config/config.go b/config/config.go index e034f15..985777d 100644 --- a/config/config.go +++ b/config/config.go @@ -26,7 +26,7 @@ type config struct { } type webhooks struct { - CrawlTask []string `env:"WEBHOOKS_ERROR_TASK" json:"crawl_task"` + CrawlTask []string `env:"WEBHOOKS_CRAWL_TASK" json:"crawl_task"` } type server struct { diff --git a/server/middleware/log.go b/server/middleware/log.go index b1192ba..ea47dc7 100644 --- a/server/middleware/log.go +++ b/server/middleware/log.go @@ -3,6 +3,7 @@ package middleware import ( "pcgamedb/log" "strconv" + "strings" "time" "github.com/gin-gonic/gin" @@ -22,6 +23,11 @@ func Logger() gin.HandlerFunc { statusCode := c.Writer.Status() clientIP := c.ClientIP() + if strings.HasPrefix(reqURI, "/swagger/") || + strings.EqualFold(reqURI, "/favicon.ico") { + return + } + log.Logger.Info( "request", zap.Int("code", statusCode),