0

我一直在尝试为基于 WAMP(Web 应用程序消息传递协议)的 python 组件调试远程过程调用。例如:

前端(浏览器)

session.call('math.add2', [2, 'two']);

后端(python)

@wamp.register("math.add2")
def add2(self, x, y):
    return x + y

它提供了一些关于错误的想法。 错误

对于像这样的简单示例,它根本不重要,但对于具有大量文件和模块的大型应用程序,我不太确定找出错误的最佳方法,以便它输出带有文件的完整错误跟踪名称、行号和描述。

作为一种解决方案,我稍微修改了wamp.py(添加了行traceback.print_exc()),如下所示,以在控制台日志中输出错误:

# autobahn/asyncio/wamp.py
...
import traceback
...

class FutureMixin:
  ...
  @staticmethod
  def _as_future(fun, *args, **kwargs):
     try:
        res = fun(*args, **kwargs)
     except Exception as e:
        traceback.print_exc() # Added this line
        ...

这是处理它的标准方法吗?

4

1 回答 1

2

AutobahnPython 允许您打开在 WAMP 错误消息中发送回溯:

class MyComponent(ApplicationSession):
   def __init__(self, config = None):
      ApplicationSession.__init__(self, config)
      self.traceback_app = True
于 2015-01-18T12:52:18.817 回答