(format string, args ...interface{})
| 274 | } |
| 275 | |
| 276 | func (sLog *smartIDELogStruct) DebugF(format string, args ...interface{}) { |
| 277 | |
| 278 | validF(format, args...) |
| 279 | |
| 280 | msg := fmt.Sprintf(format, args...) |
| 281 | |
| 282 | SmartIDELog.Debug(msg) |
| 283 | } |
| 284 | |
| 285 | func (sLog *smartIDELogStruct) Debug(args ...string) { |
| 286 |
no test coverage detected