Debugf implements log.Interface.
(msg string, v ...any)
| 107 | |
| 108 | // Debugf implements log.Interface. |
| 109 | func (l *Logger) Debugf(msg string, v ...any) { |
| 110 | l.Debug(fmt.Sprintf(msg, v...)) |
| 111 | } |
| 112 | |
| 113 | // Infof implements log.Interface. |
| 114 | func (l *Logger) Infof(msg string, v ...any) { |