(format string, args ...any)
| 60 | } |
| 61 | |
| 62 | func (g *glogger) Warningf(format string, args ...any) { |
| 63 | glog.WarningDepth(d, fmt.Sprintf(format, args...)) |
| 64 | } |
| 65 | |
| 66 | func (g *glogger) WarningDepth(depth int, args ...any) { |
| 67 | glog.WarningDepth(depth+d, args...) |
nothing calls this directly
no test coverage detected