removed uneeded console logging

This commit is contained in:
fynks 2025-10-24 10:06:47 +05:00
parent 72cc64f624
commit 5bfbbe163b

12
dist/js/app.js vendored
View file

@ -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();