另客网go项目公用的代码库

logger.go 179B

12345678910111213
  1. package app
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "github.com/sirupsen/logrus"
  5. )
  6. func InitLogger() {
  7. if gin.Mode() == gin.DebugMode {
  8. logrus.SetLevel(logrus.DebugLevel)
  9. }
  10. }