(args ...any)
| 56 | } |
| 57 | |
| 58 | func (g *glogger) Warningln(args ...any) { |
| 59 | glog.WarningDepth(d, fmt.Sprintln(args...)) |
| 60 | } |
| 61 | |
| 62 | func (g *glogger) Warningf(format string, args ...any) { |
| 63 | glog.WarningDepth(d, fmt.Sprintf(format, args...)) |
nothing calls this directly
no test coverage detected