From 968353dd843ca83dbb6a8d24a88c52733172dc2c Mon Sep 17 00:00:00 2001
From: jstuczyn <jedrzej.stuczynski@gmail.com>
Date: Tue, 19 May 2020 12:17:16 +0100
Subject: [PATCH] Removed redundant console.log

---
 clients/webassembly/client.js | 1 -
 1 file changed, 1 deletion(-)

diff --git a/clients/webassembly/client.js b/clients/webassembly/client.js
index 8997866155a..57c102f8b0e 100644
--- a/clients/webassembly/client.js
+++ b/clients/webassembly/client.js
@@ -37,7 +37,6 @@ export class Client {
     async updateTopology() {
         let response = await http('get', this.topologyEndpoint);
         let topology = JSON.parse(response); // make sure it's a valid json
-        console.log(topology);
         this.topology = topology;
         this.onUpdatedTopology();
         return topology;