Meteor.methods
foo: (a, b) ->
notDefined.bar()
Meteor.call('foo', 1, 2)
现在,我在日志和Kadira中的所有内容都是错误对象和堆栈跟踪。
我想知道a和b是什么(1和2)。知道args到我自己没有定义的方法(内部包)会很高兴。目前我唯一的通用处理程序是:
Kadira.errors.addFilter (errorType, message, error) ->
相关讨论:
https://forums.meteor.com/t/catching-and-logging-uncaught-errors-from-meteor-methods/5969