Seeing exceptions from methods registered to SimpleXMLRPCServer
问题 I'm writing an xmlrpc-based python 2.7 program, using SimpleXMLRPCServer. I import the class with all our logic and register it with: server = SimpleXMLRPCServer(("0.0.0.0", 9001)) server.register_instancce(classWithAllTheLogic()) server.serve_forever() When running this in console I can see the log messages from SimpleXMLRPCServer about what messages are being sent, but all of the debug information from methods within classWithAllTheLogic() seems to be surpressed. If a method throws an