(err error, format string, v ...interface{})
| 528 | } |
| 529 | |
| 530 | func WarnErrorf(err error, format string, v ...interface{}) { |
| 531 | t := TYPE_WARN |
| 532 | if StdLog.isDisabled(t) { |
| 533 | return |
| 534 | } |
| 535 | s := fmt.Sprintf(format, v...) |
| 536 | StdLog.output(1, err, t, s) |
| 537 | } |
| 538 | |
| 539 | func Info(v ...interface{}) { |
| 540 | t := TYPE_INFO |
nothing calls this directly
no test coverage detected