(args ...any)
| 72 | } |
| 73 | |
| 74 | func (g *glogger) Errorln(args ...any) { |
| 75 | glog.ErrorDepth(d, fmt.Sprintln(args...)) |
| 76 | } |
| 77 | |
| 78 | func (g *glogger) Errorf(format string, args ...any) { |
| 79 | glog.ErrorDepth(d, fmt.Sprintf(format, args...)) |
nothing calls this directly
no test coverage detected