Infof implements log.Interface.
(msg string, v ...any)
| 112 | |
| 113 | // Infof implements log.Interface. |
| 114 | func (l *Logger) Infof(msg string, v ...any) { |
| 115 | l.Info(fmt.Sprintf(msg, v...)) |
| 116 | } |
| 117 | |
| 118 | // Warnf implements log.Interface. |
| 119 | func (l *Logger) Warnf(msg string, v ...any) { |