mirror of
https://github.com/certbot/certbot.git
synced 2026-06-03 22:08:07 -04:00
Merge pull request #707 from kuba/log-http-req-params
Log HTTP request params (including contents).
This commit is contained in:
commit
48467a1b38
1 changed files with 2 additions and 1 deletions
|
|
@ -534,7 +534,8 @@ class ClientNetwork(object):
|
|||
|
||||
|
||||
"""
|
||||
logging.debug('Sending %s request to %s', method, url)
|
||||
logging.debug('Sending %s request to %s. args: %r, kwargs: %r',
|
||||
method, url, args, kwargs)
|
||||
kwargs['verify'] = self.verify_ssl
|
||||
response = requests.request(method, url, *args, **kwargs)
|
||||
logging.debug('Received %s. Headers: %s. Content: %r',
|
||||
|
|
|
|||
Loading…
Reference in a new issue