Skip to content

Files

Latest commit

 

History

History
29 lines (22 loc) · 845 Bytes

logging.rst

File metadata and controls

29 lines (22 loc) · 845 Bytes

Logging

To see full HTTP request and response details, you can modify the logger settings for the Requests library, which python-arango uses under the hood:

import requests
import logging

try:
    # For Python 3
    from http.client import HTTPConnection
except ImportError:
    # For Python 2
    from httplib import HTTPConnection
HTTPConnection.debuglevel = 1

logging.basicConfig()
logging.getLogger().setLevel(logging.DEBUG)
requests_log = logging.getLogger("requests.packages.urllib3")
requests_log.setLevel(logging.DEBUG)
requests_log.propagate = True

If python-arango's default HTTP client is overridden, the code snippet above may not work as expected. See :doc:`http` for more information.