You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
384 B

2 years ago
  1. package config
  2. type Log struct {
  3. Out string
  4. Formatter string
  5. JsonPrettyPrint bool
  6. OutColor bool
  7. MinLevel string
  8. ReportCaller bool
  9. MaxFileSize uint64
  10. WithLinkFile bool
  11. FilePath string
  12. FileName string
  13. RotationTime string
  14. MaxAge string
  15. MaxRemainCount uint
  16. TimestampFormat string
  17. DisableSorting bool
  18. }