(ctx context.Context, format string, args ...any)
| 76 | } |
| 77 | |
| 78 | func Infof(ctx context.Context, format string, args ...any) { |
| 79 | logData := getLogBlockData(ctx) |
| 80 | if logData == nil { |
| 81 | return |
| 82 | } |
| 83 | writeLogf(logData.BlockId, format, args) |
| 84 | } |
| 85 | |
| 86 | func Debugf(ctx context.Context, format string, args ...interface{}) { |
| 87 | logData := getLogBlockData(ctx) |
no test coverage detected