more logging cleanup

This commit is contained in:
Bruno Windels 2019-03-20 17:15:43 +01:00
parent 9da13fe430
commit 02a5aa3b1f

View file

@ -569,11 +569,12 @@ module.exports = React.createClass({
debuglog("unable to save scroll state: found no children in the viewport"); debuglog("unable to save scroll state: found no children in the viewport");
return; return;
} }
debuglog("saving anchored scroll state to message", node && node.innerText); const scrollToken = node.dataset.scrollTokens.split(',')[0];
debuglog("saving anchored scroll state to message", node && node.innerText, scrollToken);
this.scrollState = { this.scrollState = {
stuckAtBottom: false, stuckAtBottom: false,
trackedNode: node, trackedNode: node,
trackedScrollToken: node.dataset.scrollTokens.split(',')[0], trackedScrollToken: scrollToken,
bottomOffset: this._topFromBottom(node), bottomOffset: this._topFromBottom(node),
}; };
}, },