It's better to use python loggers than print statement.
With that change, we are able to see messages only from specified module, or
only critical messages.
Usage:
import logging
logging.basicConfig(level=logging.DEBUG)
logging.getLogger('pysimplesoap.server').setLevel(logging.DEBUG)
logging.getLogger('pysimplesoap.simplexml').setLevel(logging.DEBUG)
Original issue reported on code.google.com by ma...@matee.net on 16 Dec 2011 at 10:27
Original issue reported on code.google.com by
ma...@matee.net
on 16 Dec 2011 at 10:27Attachments: