11

我想记录发出请求的人的 user_id 以及为 javascript 类调用的每个方法的方法名称。例如:

35 - log_in
35 - list_of_other_users
78 - log_in
35 - send_message_to_user
35 - connect_to_redis
78 - list_of_other_users

由于一切都是异步的,用户 35 和 78 可能同时在做一些事情。所以我想确保每个日志行都以他们的 user_id 开头,这样我就可以 grep 并且一次只能看到一个用户的活动。

有没有一种超级聪明的方法来做到这一点,而无需在每个方法中添加记录器语句?

4

3 回答 3

9

答案基本上是正确的,但这里是如何避免无限递归

Javascript

(function () {
  var oldCall = Function.prototype.call;
  var newCall = function(self) {
    Function.prototype.call = oldCall;
    console.log('Function called:', this.name);
    var args = Array.prototype.slice.call(arguments, 1);
    var res = this.apply(self, args);
    Function.prototype.call = newCall;
    return res
  }
  Function.prototype.call = newCall;
})();

咖啡脚本

do ->
  oldCall = Function::call
  newCall = (self) ->
    Function::call = oldCall
    console.log "Function called: #{this.name}"
    args = Array.prototype.slice.call arguments, 1
    res = this.apply self, args
    Function::call = newCall
    res
  Function::call = newCall
于 2015-02-24T23:57:09.410 回答
4

这是一种选择,虽然不完全确定它有多可靠,但感觉有点不对:

(function () {
  var oldCall = Function.prototype.call;
  var newCall = function(self) {
    Function.prototype.call = oldCall;
    console.log('Function called:', this.name);
    var args = Array.prototype.slice.call(arguments, 1);
    Function.prototype.call = newCall;
    this.apply(self, args);
  }
  Function.prototype.call = newCall;
})();

如您所见,它覆盖了call函数 - 当您尝试调用时这会产生一个小问题,console.log()因此您需要将函数交换回来。但它似乎工作!

编辑

由于这被标记为 CoffeeScript:

do ->
  oldCall = Function::call
  newCall = (self) ->
    Function::call = oldCall
    console.log "Function called: #{this.name}"
    args = Array.prototype.slice.call arguments, 1
    Function::call = newCall
    this.apply self, args
  Function::call = newCall
于 2013-04-09T04:15:27.967 回答
3

我猜这是一个网络应用程序,在这种情况下,如果您使用连接,您可以使用记录用户和 URL 路径的记录器中间件,这可能就足够了。否则,您将不得不按照将每个函数包装在包装函数中的方式进行一些元编程以进行日志记录。

function logCall(realFunc, instance) {
    return function() {
      log.debug('User: ' + instance.user_id + ' method ' + realFunc.name);
      return realFunc.apply(instance, arguments);
    };
}

为此,您的类方法必须命名为函数,而不是匿名的。

function sendMessage() {
    //code to send message
    //can use `this` to access instance properties
}
function MyClass(userId) {
    this.userId = userId; //or whatever
    this.sendMessage = logCall(sendMessage, this);
    //repeat above line for each instance method you want instrumented for logging
}
于 2013-04-08T22:09:16.143 回答