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

13 lines
194 B

  1. package grlogs
  2. import (
  3. "testing"
  4. )
  5. func TestGetLogger(t *testing.T) {
  6. l := GetLogger("nds")
  7. l.Debug("我正在调试")
  8. l.Critical("出错了")
  9. GetLogger("wifi").Critical("hello wifi")
  10. }