(format string, args ...interface{})
| 267 | } |
| 268 | |
| 269 | func validF(format string, args ...interface{}) { |
| 270 | if strings.Count(format, "%v") != len(args) { |
| 271 | msg := fmt.Sprintf(": format tag reads arg count != length of args; format: %v, values: %v", format, args) |
| 272 | panic(msg) |
| 273 | } |
| 274 | } |
| 275 | |
| 276 | func (sLog *smartIDELogStruct) DebugF(format string, args ...interface{}) { |
| 277 |