Errorln logs to ERROR log. Arguments are handled in the manner of fmt.Println.
(args ...any)
| 72 | |
| 73 | // Errorln logs to ERROR log. Arguments are handled in the manner of fmt.Println. |
| 74 | func (l *LoggerWrapper) Errorln(args ...any) { |
| 75 | l.Logger.Println(args...) |
| 76 | } |
| 77 | |
| 78 | // Errorf logs to ERROR log. Arguments are handled in the manner of fmt.Printf. |
| 79 | func (l *LoggerWrapper) Errorf(format string, args ...any) { |