cartman icon indicating copy to clipboard operation
cartman copied to clipboard

Verbose or debugging mode

Open ryandesign opened this issue 8 years ago • 1 comments

I'm trying to add a custom authentication method to cartman, but so far I'm stuck at:

requests.exceptions.TooManyRedirects: Exceeded 30 redirects.

Can something be added to cartman—a verbose or debugging mode perhaps—so that I can see what requests are being made and what responses are being received so that I can try to debug this?

ryandesign avatar Aug 28 '16 00:08 ryandesign

Setting

import httplib
httplib.HTTPConnection.debuglevel = 1

near the top of app.py helps.

ryandesign avatar Aug 28 '16 00:08 ryandesign