mirror of https://github.com/MISP/PyMISP
Improve debug mode
parent
f62cf9f3d9
commit
c90c73c9af
|
@ -755,6 +755,9 @@ class PyMISP(object):
|
||||||
raise Exception('Invalid controller. Can only be {}'.format(', '.join(['events', 'attributes'])))
|
raise Exception('Invalid controller. Can only be {}'.format(', '.join(['events', 'attributes'])))
|
||||||
url = urljoin(self.root_url, '{}/{}'.format(controller, path.lstrip('/')))
|
url = urljoin(self.root_url, '{}/{}'.format(controller, path.lstrip('/')))
|
||||||
query = {'request': query}
|
query = {'request': query}
|
||||||
|
if self.debug:
|
||||||
|
print('URL: ', url)
|
||||||
|
print('Query: ', query)
|
||||||
response = session.post(url, data=json.dumps(query))
|
response = session.post(url, data=json.dumps(query))
|
||||||
return self._check_response(response)
|
return self._check_response(response)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue