(vals ...interface{})
| 46 | } |
| 47 | |
| 48 | func (a adapter) Debugln(vals ...interface{}) { |
| 49 | a.log(strings.TrimSpace(fmt.Sprintln(vals...)), slog.LevelDebug) |
| 50 | } |
| 51 | |
| 52 | func (a adapter) Debugf(format string, vals ...interface{}) { |
| 53 | a.log(fmt.Sprintf(format, vals...), slog.LevelDebug) |