(format string, v ...interface{})
| 582 | } |
| 583 | |
| 584 | func Debugf(format string, v ...interface{}) { |
| 585 | t := TYPE_DEBUG |
| 586 | if StdLog.isDisabled(t) { |
| 587 | return |
| 588 | } |
| 589 | s := fmt.Sprintf(format, v...) |
| 590 | StdLog.output(1, nil, t, s) |
| 591 | } |
| 592 | |
| 593 | func DebugError(err error, v ...interface{}) { |
| 594 | t := TYPE_DEBUG |
nothing calls this directly
no test coverage detected