2015-07-10 63 views
0

我注意到控制台中下面代码的双箭头控制台日志。这是什么意思?我担心这是一个错误,并且跟踪的数据是如何被破坏的。有人知道双箭头意味着什么,为什么即时获得它?js控制台上的双箭头登录chrome

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

回答

0

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