We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6683bfa commit 82af963Copy full SHA for 82af963
1 file changed
contentstack/http_request.py
@@ -19,8 +19,8 @@ def http_request(self) -> dict:
19
self._local_headers['X-User-Agent'] = self._contentstack_user_agent()
20
self._local_headers['Content-Type'] = 'application/json'
21
response = requests.get(self.url_path, params=self._query_prams, headers=self._local_headers)
22
- # print(response.url)
23
- logging.info('url', response.url)
+
+ print('request url:: ', response.url)
24
if response.ok:
25
json_response = response.json()
26
if 'stack' in json_response:
0 commit comments