问题 I have been trying to debug Remote Procedure Calls for WAMP (Web Application Messaging Protocol) based python components. For example: Front end (browser) session.call('math.add2', [2, 'two']); Back end (python) @wamp.register("math.add2") def add2(self, x, y): return x + y It gives a little bit of idea about the error. For a simple example like this, it doesn't really matter at all but for large applications with a lot of files and modules, Im not quite sure about the best way to pin point