зеркало из https://github.com/mozilla/FlightDeck.git
logging response
This commit is contained in:
Родитель
e0f5016f95
Коммит
eb353af7a4
|
@ -57,6 +57,7 @@ def get_addon_details(amo_id, amo_file_id=None):
|
||||||
|
|
||||||
|
|
||||||
def fetch_amo_user(email):
|
def fetch_amo_user(email):
|
||||||
|
log.debug('#'*80)
|
||||||
amo = AMOOAuth(domain=settings.AMOOAUTH_DOMAIN,
|
amo = AMOOAuth(domain=settings.AMOOAUTH_DOMAIN,
|
||||||
port=settings.AMOOAUTH_PORT,
|
port=settings.AMOOAUTH_PORT,
|
||||||
protocol=settings.AMOOAUTH_PROTOCOL,
|
protocol=settings.AMOOAUTH_PROTOCOL,
|
||||||
|
|
|
@ -206,6 +206,7 @@ class AMOOAuth:
|
||||||
def _send(self, url, method, data):
|
def _send(self, url, method, data):
|
||||||
resp, content = self._request(None, method, url,
|
resp, content = self._request(None, method, url,
|
||||||
data=data)
|
data=data)
|
||||||
|
log.debug('response received: %d, %s' % (resp.status, content))
|
||||||
if resp.status == 404:
|
if resp.status == 404:
|
||||||
raise Http404
|
raise Http404
|
||||||
if resp.status != 200:
|
if resp.status != 200:
|
||||||
|
|
Загрузка…
Ссылка в новой задаче