(template string, args ...interface{})
| 129 | } |
| 130 | |
| 131 | func Errorf(template string, args ...interface{}) { |
| 132 | DefaultLogger.Logf(ErrorLevel, template, args...) |
| 133 | } |
| 134 | |
| 135 | func Fatal(args ...interface{}) { |
| 136 | DefaultLogger.Log(FatalLevel, args...) |
no test coverage detected
searching dependent graphs…