高热共公日志库
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

26 rindas
525 B

  1. package grlogs
  2. type Level int
  3. type Adapter string
  4. const (
  5. _ Level = iota
  6. LevelNone Level = iota
  7. LevelCritical Level = iota
  8. LevelError Level = iota
  9. LevelWarning Level = iota
  10. LevelWarn Level = iota
  11. LevelInfo Level = iota
  12. LevelDebug Level = iota
  13. LevelAll Level = iota
  14. )
  15. const (
  16. AdapterFile Adapter = "file"
  17. AdapterConsole Adapter = "console"
  18. AdapterSocket Adapter = "socket"
  19. AdapterElasticSearch Adapter = "es"
  20. AdapterAliLs Adapter = "alils"
  21. )