twisted.web.client HTTP 日志记录
twisted.web.client HTTP logging
如何在使用 twisted.web.client
时记录 HTTP 请求和响应?我已经检查了文档和来源,但没有找到任何东西,但也许可以使用一些自定义代理或类似的代理?
没有对此的内置支持,但您可以实现自己的 IAgent
, that does logging and delegates to another IAgent
, perhaps using proxyForInterface
。
如何在使用 twisted.web.client
时记录 HTTP 请求和响应?我已经检查了文档和来源,但没有找到任何东西,但也许可以使用一些自定义代理或类似的代理?
没有对此的内置支持,但您可以实现自己的 IAgent
, that does logging and delegates to another IAgent
, perhaps using proxyForInterface
。