logs.go 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. package utils
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "github.com/beego/beego/v2/core/logs"
  6. "github.com/sirupsen/logrus"
  7. "gopkg.in/natefinch/lumberjack.v2"
  8. "os"
  9. "path"
  10. "time"
  11. )
  12. const (
  13. DefaultLogPath = "./etalogs/filelog"
  14. DefaultBinlogPath = "./etalogs/binlog"
  15. )
  16. var FileLog = logrus.New()
  17. var Binlog *logs.BeeLogger
  18. func init() {
  19. if LogMaxDays == 0 {
  20. LogMaxDays = 30
  21. }
  22. logPath := LogPath
  23. if logPath == "" {
  24. logPath = DefaultLogPath
  25. }
  26. logFile := LogFile
  27. if logFile == "" {
  28. logFile = fmt.Sprintf("%s.log", time.Now().Format(FormatDateUnSpace))
  29. }
  30. os.MkdirAll(logPath, os.ModePerm)
  31. // 打开文件
  32. logFileName := path.Join(logPath, logFile)
  33. logConf := getDefaultLogrusConfig(logFileName)
  34. // 使用滚动压缩方式记录日志
  35. rolling(FileLog, logConf)
  36. //rolling(bLogFileName)
  37. // 设置日志输出JSON格式
  38. jsonFormat := new(logrus.JSONFormatter)
  39. jsonFormat.DisableHTMLEscape = true
  40. jsonFormat.TimestampFormat = HlbFormatDateTime
  41. FileLog.SetFormatter(jsonFormat)
  42. FileLog.SetReportCaller(true)
  43. //LogInstance.SetFormatter(&logrus.TextFormatter{})
  44. // 设置日志记录级别
  45. //FileLog.SetLevel(logrus.DebugLevel)
  46. //FileLog.Info("abc")
  47. initBinlog()
  48. }
  49. type logConfig struct {
  50. FileName string `json:"filename" description:"保存的文件名"`
  51. MaxLines int `json:"maxlines" description:"每个文件保存的最大行数,默认值 1000000"`
  52. MaxSize int `json:"maxsize" description:"每个文件保存的最大尺寸,默认值是 1 << 28, //256 MB"`
  53. Daily bool `json:"daily" description:"是否按照每天 logrotate,默认是 true"`
  54. MaxDays int `json:"maxdays" description:"文件最多保存多少天,默认保存 7 天"`
  55. Rotate bool `json:"rotate" description:"是否开启 logrotate,默认是 true"`
  56. Level int `json:"level" description:"日志保存的时候的级别,默认是 Trace 级别"`
  57. Color bool `json:"color" description:"日志是否输出颜色"`
  58. //Perm string `json:"perm" description:"日志文件权限"`
  59. }
  60. func initBinlog() {
  61. //binlog日志
  62. //binlog日志
  63. binlogPath := BinLogPath
  64. if binlogPath == "" {
  65. binlogPath = DefaultBinlogPath
  66. }
  67. binlogFile := BinLogFile
  68. if binlogFile == "" {
  69. binlogFile = fmt.Sprintf("%s.log", time.Now().Format(FormatDateUnSpace))
  70. }
  71. os.MkdirAll(binlogPath, os.ModePerm)
  72. logFileName := path.Join(binlogPath, binlogFile)
  73. Binlog = logs.NewLogger(1000000)
  74. logConf := getDefaultLogConfig()
  75. logConf.FileName = logFileName
  76. logConf.MaxLines = 10000000
  77. logConf.Rotate = true
  78. b, _ := json.Marshal(logConf)
  79. Binlog.SetLogger(logs.AdapterFile, string(b))
  80. Binlog.EnableFuncCallDepth(true)
  81. }
  82. // 日志滚动设置
  83. func rolling(fLog *logrus.Logger, config *lumberjack.Logger) {
  84. // 设置输出
  85. fLog.SetOutput(config)
  86. }
  87. func getDefaultLogrusConfig(logFile string) (config *lumberjack.Logger) {
  88. config = &lumberjack.Logger{
  89. Filename: logFile, //日志文件位置
  90. MaxSize: 256, // 单文件最大容量,单位是MB
  91. MaxBackups: 0, // 最大保留过期文件个数
  92. MaxAge: LogMaxDays, // 保留过期文件的最大时间间隔,单位是天
  93. Compress: true, // 是否需要压缩滚动日志, 使用的 gzip 压缩
  94. LocalTime: true,
  95. }
  96. return
  97. }
  98. func getDefaultLogConfig() logConfig {
  99. return logConfig{
  100. FileName: "",
  101. MaxLines: 0,
  102. MaxSize: 1 << 28,
  103. Daily: true,
  104. MaxDays: LogMaxDays, //我就是喜欢31天,咋滴,不喜欢你就自己改-_-!
  105. Rotate: true,
  106. Level: logs.LevelTrace,
  107. //Perm: "",
  108. }
  109. }