(format string, v ...interface{})
| 12 | type zinxDefaultLog struct{} |
| 13 | |
| 14 | func (log *zinxDefaultLog) InfoF(format string, v ...interface{}) { |
| 15 | StdZinxLog.Infof(format, v...) |
| 16 | } |
| 17 | |
| 18 | func (log *zinxDefaultLog) ErrorF(format string, v ...interface{}) { |
| 19 | StdZinxLog.Errorf(format, v...) |