Errorf calls the default logger's Errorf method.
(format string, v ...any)
| 46 | |
| 47 | // Errorf calls the default logger's Errorf method. |
| 48 | func Errorf(format string, v ...any) { |
| 49 | logger.Errorf(format, v...) |
| 50 | } |
| 51 | |
| 52 | // Warnf calls the default logger's Warnf method. |
| 53 | func Warnf(format string, v ...any) { |