Skip to content
Chris Smith edited this page Dec 1, 2016 · 8 revisions

General FAQ

General

Q: I am having trouble running the samples, what can I do to debug them?

A: The following steps are generally useful for debugging the client library/samples:

  • Ensure the prerequisites for the MAR DXL Python client library have been met.

  • Switch from ERROR to DEBUG logging in the samples as shown below:

    # Configure local logger
    logging.getLogger().setLevel(logging.ERROR)

    Change to:

    # Configure local logger
    logging.getLogger().setLevel(logging.DEBUG)

Q: I receive a timeout, "dxlclient.exceptions.WaitTimeoutException: Timeout waiting for response to message", when attempting to use the client library/samples

A: TODO

TODO