(msg string, args ...any)
| 37 | } |
| 38 | |
| 39 | func (l *Logger) ExtraDebug(msg string, args ...any) { |
| 40 | l.Log(context.Background(), LevelExtraDebug, msg, args...) |
| 41 | } |
| 42 | |
| 43 | func (l *Logger) ExtraDebugContext(ctx context.Context, msg string, args ...any) { |
| 44 | l.Log(ctx, LevelExtraDebug, msg, args...) |
no test coverage detected