高热共公日志库
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.

15 lines
236 B

  1. package grlogs
  2. import (
  3. "testing"
  4. "time"
  5. )
  6. func TestGetLogger(t *testing.T) {
  7. l := Get("nds", 128)
  8. l.Debug("我正在调试")
  9. l.Critical("出错了")
  10. Get("nds").Warning("hadoee %s", time.Now().Format(time.RFC1123))
  11. l.Flush()
  12. }