1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-10 09:22:25 +03:00

Remove debug logging

This commit is contained in:
Travis Ralston
2020-07-24 13:23:51 -06:00
parent c3623f439c
commit e3800dba0e

View File

@@ -159,13 +159,11 @@ export default class RoomTile extends React.Component<IProps, IState> {
// Whenever a prop change happens (or our parent updates) we can get told to update too. Try // Whenever a prop change happens (or our parent updates) we can get told to update too. Try
// to minimize that by seeing if anything actually changed. // to minimize that by seeing if anything actually changed.
if (objectHasValueChange(this.props, nextProps)) { if (objectHasValueChange(this.props, nextProps)) {
console.log(`DIFF_PROPS@${this.props.room.roomId}`, JSON.stringify(objectDiff(this.props, nextProps)));
return true; return true;
} }
// Do the same for state // Do the same for state
if (objectHasValueChange(this.state, nextState)) { if (objectHasValueChange(this.state, nextState)) {
console.log(`DIFF_STATE@${this.props.room.roomId}`, JSON.stringify(objectDiff(this.state, nextState)));
return true; return true;
} }