From 40a90a680985ed40fb30fc09b459b6160cb16463 Mon Sep 17 00:00:00 2001 From: f0x Date: Wed, 17 Apr 2019 21:18:11 +0200 Subject: [PATCH] remove unneseccary debug logging --- app.js | 3 --- components/filterList.js | 2 -- 2 files changed, 5 deletions(-) diff --git a/app.js b/app.js index be34cd4..1d953f8 100644 --- a/app.js +++ b/app.js @@ -51,7 +51,6 @@ let App = create({ userId: userId }); - console.log("CLIENT", client) this.setState({ client: client }) @@ -59,9 +58,7 @@ let App = create({ }, startClient: function(client) { - console.log(this.state) client.on("sync", (state, prevState, data) => { - console.log(state) if (state == "ERROR") { } else if (state == "SYNCING") { let rooms = {} diff --git a/components/filterList.js b/components/filterList.js index 4c25414..0e8f680 100644 --- a/components/filterList.js +++ b/components/filterList.js @@ -16,7 +16,6 @@ let FilterList = create({ }, select: function(id) { - console.log("SELECTED", id) this.setState({selection: id}) this.props.callback(id) }, @@ -41,7 +40,6 @@ let FilterList = create({ let keys = Object.keys(this.props.items) let items = keys.map((itemKey, id) => { let item = this.props.items[itemKey] - console.log(item) let props = { selected: this.state.selection == itemKey, filter: this.state.filter,