Debugf calls FromContext(ctx).Debugf
(ctx context.Context, msg string, v ...any)
| 43 | |
| 44 | // Debugf calls FromContext(ctx).Debugf |
| 45 | func Debugf(ctx context.Context, msg string, v ...any) { |
| 46 | FromContext(ctx).Debugf(msg, v...) |
| 47 | } |
| 48 | |
| 49 | // Infof calls FromContext(ctx).Infof |
| 50 | func Infof(ctx context.Context, msg string, v ...any) { |