(format string, v ...interface{})
| 474 | } |
| 475 | |
| 476 | func Errorf(format string, v ...interface{}) { |
| 477 | t := TYPE_ERROR |
| 478 | if StdLog.isDisabled(t) { |
| 479 | return |
| 480 | } |
| 481 | s := fmt.Sprintf(format, v...) |
| 482 | StdLog.output(1, nil, t, s) |
| 483 | } |
| 484 | |
| 485 | func ErrorError(err error, v ...interface{}) { |
| 486 | t := TYPE_ERROR |
nothing calls this directly
no test coverage detected