Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Reduce log spam: Revert a16aeeef2a0f16efedf7e6616cdf3c2c8752a077 #644

Merged
merged 1 commit into from
Jan 24, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions src/components/structures/MatrixChat.js
Original file line number Diff line number Diff line change
Expand Up @@ -259,8 +259,6 @@ module.exports = React.createClass({
},

onAction: function(payload) {
console.log("onAction: "+payload.action);

var roomIndexDelta = 1;

var self = this;
Expand Down Expand Up @@ -1008,8 +1006,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');
Expand Down
1 change: 0 additions & 1 deletion src/dispatcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ class MatrixDispatcher extends flux.Dispatcher {
* for.
*/
dispatch(payload, sync) {
console.log("Dispatch: "+payload.action);
if (sync) {
super.dispatch(payload);
} else {
Expand Down