You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-07-18 09:22:18 +03:00
Temporarily add more logging, to try to catch failures on travis
This commit is contained in:
@ -259,6 +259,8 @@ module.exports = React.createClass({
|
||||
},
|
||||
|
||||
onAction: function(payload) {
|
||||
console.log("onAction: "+payload.action);
|
||||
|
||||
var roomIndexDelta = 1;
|
||||
|
||||
var self = this;
|
||||
@ -1006,8 +1008,8 @@ module.exports = React.createClass({
|
||||
var ForgotPassword = sdk.getComponent('structures.login.ForgotPassword');
|
||||
var LoggedInView = sdk.getComponent('structures.LoggedInView');
|
||||
|
||||
// console.log("rendering; loading="+this.state.loading+"; screen="+this.state.screen +
|
||||
// "; logged_in="+this.state.logged_in+"; ready="+this.state.ready);
|
||||
console.log("rendering; loading="+this.state.loading+"; screen="+this.state.screen +
|
||||
"; logged_in="+this.state.logged_in+"; ready="+this.state.ready);
|
||||
|
||||
if (this.state.loading) {
|
||||
var Spinner = sdk.getComponent('elements.Spinner');
|
||||
|
@ -28,6 +28,7 @@ class MatrixDispatcher extends flux.Dispatcher {
|
||||
* for.
|
||||
*/
|
||||
dispatch(payload, sync) {
|
||||
console.log("Dispatch: "+payload.action);
|
||||
if (sync) {
|
||||
super.dispatch(payload);
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user