cihub / seelog

Seelog is a native Go logging library that provides flexible asynchronous dispatching, filtering, and formatting.
BSD 3-Clause "New" or "Revised" License
1.64k stars 244 forks source link

seelog cannot print interface{},even if I assign a value to the interface{} #175

Open yuyuisjia opened 4 years ago

yuyuisjia commented 4 years ago

It cannot work like this--- var i interface{} var s []string = []string{"a", "b"} i = s log.Infof("%T, %v", i, i)