diff --git a/src/app/components/info-tile/info-tile.component.ts b/src/app/components/info-tile/info-tile.component.ts
index aff398c2e3e50d7c3d9adbd2555dd4f9459abb37..44bd205e879c1fc829ae1d7d1e4adc40b72eb77b 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 d6f1a124a8973e4a33cbf59a861a94856fb8188f..b0d1dcc6b54c58e528e375a17472b651f08c8c2d 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 0cb436074123bb63e7eabf8e65d82b6033168f54..769115d8fe638ab31f844ce6d08d290af50eb357 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)
   }
 
   /**