From 4209322a60b8db251b198615e6d748d8887a4b8b Mon Sep 17 00:00:00 2001
From: Maiykol <hartung.michael@outlook.com>
Date: Wed, 23 Jun 2021 15:43:44 +0200
Subject: [PATCH] remove console logs

---
 src/app/components/info-tile/info-tile.component.ts    | 4 ----
 src/app/main-network.ts                                | 1 -
 src/app/pages/explorer-page/explorer-page.component.ts | 2 --
 3 files changed, 7 deletions(-)

diff --git a/src/app/components/info-tile/info-tile.component.ts b/src/app/components/info-tile/info-tile.component.ts
index aff398c2..44bd205e 100644
--- a/src/app/components/info-tile/info-tile.component.ts
+++ b/src/app/components/info-tile/info-tile.component.ts
@@ -18,10 +18,6 @@ export class InfoTileComponent implements OnInit {
   ngOnInit(): void {
   }
 
-  public print(x) {
-    console.log(x)
-  }
-
   public beautify(url: string): string {
     if (url.startsWith('https://')) {
       url = url.substr('https://'.length);
diff --git a/src/app/main-network.ts b/src/app/main-network.ts
index d6f1a124..b0d1dcc6 100644
--- a/src/app/main-network.ts
+++ b/src/app/main-network.ts
@@ -60,7 +60,6 @@ export class ProteinNetwork {
     }
 
     // label is only used for network visualization
-    console.log(customNode)
     node.label = customNode.label ? customNode.label : customNode.id;
 
     if (node.image) {
diff --git a/src/app/pages/explorer-page/explorer-page.component.ts b/src/app/pages/explorer-page/explorer-page.component.ts
index 0cb43607..769115d8 100644
--- a/src/app/pages/explorer-page/explorer-page.component.ts
+++ b/src/app/pages/explorer-page/explorer-page.component.ts
@@ -355,7 +355,6 @@ export class ExplorerPageComponent implements OnInit, AfterViewInit {
    * @param values 
    */
   public setConfigNodeGroup(key: string, nodeGroups: Array<NodeGroup>) {
-    console.log(Object.keys(nodeGroups).length)
     if (nodeGroups === undefined || !Object.keys(nodeGroups).length) {
       // if node groups are not set or empty, use default edge group(s)
       this.myConfig[key] = defaultConfig.nodeGroups;
@@ -372,7 +371,6 @@ export class ExplorerPageComponent implements OnInit, AfterViewInit {
     
     // override default edge groups
     this.myConfig[key] = nodeGroups;
-    console.log(nodeGroups)
   }
 
   /**
-- 
GitLab