Errorf logs at the ERROR log level using a standard printf format string.
(format string, args ...any)
| 56 | |
| 57 | // Errorf logs at the ERROR log level using a standard printf format string. |
| 58 | func Errorf(format string, args ...any) { |
| 59 | Log.Error(fmt.Sprintf(format, args...)) |
| 60 | } |
| 61 | |
| 62 | // Panicf logs at the PANIC log level using a standard printf format string. |
| 63 | func Panicf(format string, args ...any) { |
no test coverage detected
searching dependent graphs…