Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

26 linhas
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. )