logs.go 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. package utils
  2. import (
  3. "encoding/json"
  4. "os"
  5. "path"
  6. "github.com/beego/beego/v2/core/logs"
  7. )
  8. const (
  9. DefaultBinlogPath = "./etalogs/binlog"
  10. DefaultApiLogPath = "./etalogs/apilog"
  11. )
  12. var (
  13. BinLog *logs.BeeLogger
  14. ApiLog *logs.BeeLogger
  15. )
  16. func init() {
  17. initApiLog()
  18. initBinLog()
  19. }
  20. // 初始化apilog日志
  21. func initApiLog() {
  22. apilogPath := ApiLogPath
  23. if apilogPath == "" {
  24. apilogPath = DefaultApiLogPath
  25. }
  26. apilogFile := ApiLogFile
  27. if apilogFile == "" {
  28. apilogFile = "apilog.log"
  29. }
  30. os.MkdirAll(apilogPath, os.ModePerm)
  31. logFileName := path.Join(apilogPath, apilogFile)
  32. ApiLog = logs.NewLogger(1000000)
  33. logConf := getDefaultLogConfig()
  34. logConf.FileName = logFileName
  35. b, _ := json.Marshal(logConf)
  36. ApiLog.SetLogger(logs.AdapterFile, string(b))
  37. ApiLog.EnableFuncCallDepth(true)
  38. }
  39. // 初始化binlog日志
  40. func initBinLog() {
  41. binlogPath := BinLogPath
  42. if binlogPath == "" {
  43. binlogPath = DefaultBinlogPath
  44. }
  45. binlogFile := BinLogFile
  46. if binlogFile == "" {
  47. binlogFile = "binlog.log"
  48. }
  49. os.MkdirAll(binlogPath, os.ModePerm)
  50. logFileName := path.Join(binlogPath, binlogFile)
  51. BinLog = logs.NewLogger(1000000)
  52. logConf := getDefaultLogConfig()
  53. logConf.FileName = logFileName
  54. b, _ := json.Marshal(logConf)
  55. BinLog.SetLogger(logs.AdapterFile, string(b))
  56. BinLog.EnableFuncCallDepth(true)
  57. }
  58. type logConfig struct {
  59. FileName string `json:"filename" description:"保存的文件名"`
  60. MaxLines int `json:"maxlines" description:"每个文件保存的最大行数,默认值 1000000"`
  61. MaxSize int `json:"maxsize" description:"每个文件保存的最大尺寸,默认值是 1 << 28, //256 MB"`
  62. Daily bool `json:"daily" description:"是否按照每天 logrotate,默认是 true"`
  63. MaxDays int `json:"maxdays" description:"文件最多保存多少天,默认保存 7 天"`
  64. Rotate bool `json:"rotate" description:"是否开启 logrotate,默认是 true"`
  65. Level int `json:"level" description:"日志保存的时候的级别,默认是 Trace 级别"`
  66. Color bool `json:"color" description:"日志是否输出颜色"`
  67. }
  68. func getDefaultLogConfig() logConfig {
  69. return logConfig{
  70. FileName: "",
  71. MaxLines: 10000000,
  72. MaxSize: 1 << 28,
  73. Daily: true,
  74. MaxDays: LogMaxDays,
  75. Rotate: true,
  76. Level: logs.LevelTrace,
  77. //Perm: "",
  78. }
  79. }