mirror of
https://github.com/certbot/certbot.git
synced 2026-06-03 13:59:02 -04:00
Log HTTP request params (including contents).
This commit is contained in:
parent
26c1f003d0
commit
60aa1b2ecb
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