How can I output what SUDs is generating/receiving?

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.

Leave a Comment