summaryrefslogtreecommitdiff
path: root/frontend/src/sagas
diff options
context:
space:
mode:
authorGeorgios Andreadis <info@gandreadis.com>2020-07-22 15:20:19 +0200
committerFabian Mastenbroek <mail.fabianm@gmail.com>2020-08-24 19:48:20 +0200
commit1b09fadbd14ba69a6adff57c87a1a7998e68f06e (patch)
treebd406033dbb9038ec1686ca1d9904231bd3b03c1 /frontend/src/sagas
parent94cc7acc9eeb88177b7d75ff1d1c3245d09bce53 (diff)
Remove topology print
Diffstat (limited to 'frontend/src/sagas')
-rw-r--r--frontend/src/sagas/objects.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/frontend/src/sagas/objects.js b/frontend/src/sagas/objects.js
index 9dc65be1..83d71a42 100644
--- a/frontend/src/sagas/objects.js
+++ b/frontend/src/sagas/objects.js
@@ -128,7 +128,6 @@ export const fetchAndStoreTopology = function* (id) {
topology = (({ _id, name, rooms }) => ({ _id, name, roomIds: rooms.map((r) => r._id) }))(fullTopology)
yield put(addToStore('topology', topology))
- console.log('Full topology after insertion', fullTopology)
// TODO consider pushing the IDs
}