[Fixed]-Django: Disable python Requests Library Logging

1👍

For those who want to ignore this same span adding the following line to the beginning of your file works just fine (not the best solution though):

httplib.HTTPConnection.debuglevel = 0 

Leave a comment