(format string, v ...any)
| 35 | // FormatLogger is a logger interface that output logs with a format. |
| 36 | type FormatLogger interface { |
| 37 | Tracef(format string, v ...any) |
| 38 | Debugf(format string, v ...any) |
| 39 | Infof(format string, v ...any) |
| 40 | Warnf(format string, v ...any) |
no outgoing calls