(format string, args ...any)
| 76 | } |
| 77 | |
| 78 | func (g *glogger) Errorf(format string, args ...any) { |
| 79 | glog.ErrorDepth(d, fmt.Sprintf(format, args...)) |
| 80 | } |
| 81 | |
| 82 | func (g *glogger) ErrorDepth(depth int, args ...any) { |
| 83 | glog.ErrorDepth(depth+d, args...) |
nothing calls this directly
no test coverage detected