I have the following code:
from suds.client import Client import logging logging.basicConfig(level=logging.INFO) logging.getLogger(\'suds.client\').setLevel
SUDS provides some convenience methods to do just that:
client.last_sent() client.last_received()
These should provide you with what you need. I use them for error logging. The API doc for Client class should have any extra info you need.