Error implements log.Interface.
(args ...any)
| 97 | |
| 98 | // Error implements log.Interface. |
| 99 | func (l *Logger) Error(args ...any) { |
| 100 | l.entry().commit(ErrorLevel, fmt.Sprint(args...)) |
| 101 | } |
| 102 | |
| 103 | // Fatal implements log.Interface. |
| 104 | func (l *Logger) Fatal(args ...any) { |