高热共公日志库
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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