We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
现在调试日志用的是 requests (也就是 urllib3)的日志,只有 url 和 status code,没有 POST 请求的 body,也没有 http header。
顺便记录下 python 3 下如何开启完整日志:
import http.client http.client.HTTPConnection.debuglevel=5 import logging logging.basicConfig(level=logging.DEBUG) import leancloud # leancloud.init(...)
The text was updated successfully, but these errors were encountered:
但urllib3似乎是不是不怎么稳定,我运行着就出现socket.timeout: The read operation timed out
Sorry, something went wrong.
No branches or pull requests
现在调试日志用的是 requests (也就是 urllib3)的日志,只有 url 和 status code,没有 POST 请求的 body,也没有 http header。
顺便记录下 python 3 下如何开启完整日志:
The text was updated successfully, but these errors were encountered: