()
| 1642 | } |
| 1643 | |
| 1644 | func (c *Client) initTransport() { |
| 1645 | c.Debugf = func(format string, v ...any) { |
| 1646 | if c.DebugLog { |
| 1647 | c.log.Debugf(format, v...) |
| 1648 | } |
| 1649 | } |
| 1650 | } |
| 1651 | |
| 1652 | // RoundTripper is the interface of req's Client. |
| 1653 | type RoundTripper interface { |