X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=api%2Flogger.go;h=a24e08a34b8b726b751eafaef168d436af72b5ec;hb=372ed7400f57355eb7dd98058b10ddeb1e1ff635;hp=7057a3046b0dcfe2a8d6063fa80f4640630a1ec3;hpb=b718a3fc019f75fb175107329652d1db8a35a562;p=perso%2FImmae%2FProjets%2FCryptomonnaies%2FCryptoportfolio%2FFront.git diff --git a/api/logger.go b/api/logger.go index 7057a30..a24e08a 100644 --- a/api/logger.go +++ b/api/logger.go @@ -1,6 +1,11 @@ package api import ( + "fmt" + "strings" + "time" + + "github.com/Sirupsen/logrus" "github.com/gin-gonic/gin" "github.com/jloup/utils" ) @@ -10,18 +15,47 @@ var log = utils.StandardL().WithField("module", "api") func Logger() gin.HandlerFunc { return func(c *gin.Context) { path := c.Request.URL.Path + start := time.Now() rawQuery := c.Request.URL.RawQuery c.Next() - for _, err := range c.Errors { - l := log.WithField("path", path) + latency := time.Now().Sub(start).Round(10 * time.Microsecond) + code := c.Writer.Status() + + l := log + l = l.WithField("latency", latency) + l = l.WithField("client_ip", c.ClientIP()) + l = l.WithField("method", c.Request.Method) + l = l.WithField("status_code", code) + + if _, exists := c.Get("user"); exists { + l = l.WithField("user_id", GetUser(c).Id) + } + + if rawQuery != "" { + path = fmt.Sprintf("%s?%s", path, rawQuery) + } + + l = l.WithField("path", path) - if rawQuery != "" { - l = l.WithField("query", rawQuery) - } + msgLog := fmt.Sprintf("[%v] %d %s '%s'", latency, code, c.Request.Method, path) - l.Errorf("%s", err.Err) + var level logrus.Level + switch { + case code >= 200 && code < 400: + level = logrus.InfoLevel + case code >= 400 && code < 500: + level = logrus.WarnLevel + default: + level = logrus.ErrorLevel } + + comment := c.Errors.ByType(gin.ErrorTypePrivate).String() + if comment != "" { + msgLog = fmt.Sprintf("%s: %s", msgLog, strings.TrimSpace(comment)) + } + + l.Logf(level, msgLog) } }