From 5bfbbe163b58fc155ccab2656159663b13530695 Mon Sep 17 00:00:00 2001 From: fynks <75840152+fynks@users.noreply.github.com> Date: Fri, 24 Oct 2025 10:06:47 +0500 Subject: [PATCH] removed uneeded console logging --- dist/js/app.js | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/dist/js/app.js b/dist/js/app.js index 164b1ae..440b025 100644 --- a/dist/js/app.js +++ b/dist/js/app.js @@ -1815,12 +1815,6 @@ class ComparisonManager { this.#data = transformed.data; this.#services = transformed.services || DataTransformer.extractServices(transformed.data); - console.log('ComparisonManager initialized with:', { - servicesCount: this.#services.length, - services: this.#services, - hostsCount: Object.keys(this.#data).length - }); - this.#init(); } @@ -1848,12 +1842,6 @@ class ComparisonManager { this.#elements.select2.appendChild(option2); }); - console.log('Populated dropdowns with services:', this.#services); - console.log('Sample host data:', Object.keys(this.#data).slice(0, 2).map(host => ({ - host, - services: Object.keys(this.#data[host]) - }))); - const handleChange1 = () => this.#handleCompare(); const handleChange2 = () => this.#handleCompare();