Fatal implements log.Interface.
(args ...any)
| 102 | |
| 103 | // Fatal implements log.Interface. |
| 104 | func (l *Logger) Fatal(args ...any) { |
| 105 | l.entry().commit(FatalLevel, fmt.Sprint(args...)) |
| 106 | } |
| 107 | |
| 108 | // Debugf implements log.Interface. |
| 109 | func (l *Logger) Debugf(msg string, v ...any) { |