Warnf calls FromContext(ctx).Warnf
(ctx context.Context, msg string, v ...any)
| 53 | |
| 54 | // Warnf calls FromContext(ctx).Warnf |
| 55 | func Warnf(ctx context.Context, msg string, v ...any) { |
| 56 | FromContext(ctx).Warnf(msg, v...) |
| 57 | } |
| 58 | |
| 59 | // Errorf calls FromContext(ctx).Errorf |
| 60 | func Errorf(ctx context.Context, msg string, v ...any) { |