(format string, args ...any)
| 331 | } |
| 332 | |
| 333 | func (p *Processor) logf(format string, args ...any) { |
| 334 | if p.Logf != nil { |
| 335 | p.Logf(format, args...) |
| 336 | } |
| 337 | } |
| 338 | |
| 339 | func (p *Processor) warnf(format string, args ...any) { |
| 340 | if p.Warnf != nil { |
no outgoing calls
no test coverage detected