js控制台上的双箭头登录chrome

时间:2015-07-10 06:52:33

标签: google-chrome debugging console.log

我注意到控制台中下面代码中的双箭头控制台日志。这是什么意思?我担心这是一个错误,并且跟踪的数据有些损坏。有人知道双箭头意味着什么,为什么我会得到它?

The double arrow console log

LoginDispatcher.register(function(payload){

  var action = payload.action;
  var text;
  log.trace(action);

  switch(action.actionType) {
    case AppConstants.LOGIN:
      setUser(action.data);
      break;
    default:
      return true;
}

LoginStore.emitChange();

return true;

});

检查通话时,它看起来很好。 Inspection result

打开折叠箭头我看到以下信息

Image of the console log with info

1 个答案:

答案 0 :(得分:0)

我注意到这是console.log.trace函数的默认行为。所以没有错。