Debug implements log.Interface.
(args ...any)
| 82 | |
| 83 | // Debug implements log.Interface. |
| 84 | func (l *Logger) Debug(args ...any) { |
| 85 | l.entry().commit(DebugLevel, fmt.Sprint(args...)) |
| 86 | } |
| 87 | |
| 88 | // Info implements log.Interface. |
| 89 | func (l *Logger) Info(args ...any) { |