(ctx context.Context, format string, args ...interface{})
| 84 | } |
| 85 | |
| 86 | func Debugf(ctx context.Context, format string, args ...interface{}) { |
| 87 | logData := getLogBlockData(ctx) |
| 88 | if logData == nil || !logData.Verbose { |
| 89 | return |
| 90 | } |
| 91 | writeLogf(logData.BlockId, format, args) |
| 92 | } |
no test coverage detected