(format string, v ...any)
| 522 | } |
| 523 | |
| 524 | func (p *Proxy) logf(format string, v ...any) { |
| 525 | if p.Logger != nil { |
| 526 | p.Logger.Printf(format, v...) |
| 527 | } else { |
| 528 | log.Printf(format, v...) |
| 529 | } |
| 530 | } |
| 531 | |
| 532 | // TransformingTransport is an implementation of http.RoundTripper that |
| 533 | // optionally transforms images using the options specified in the request URL |
no outgoing calls