mirror of
https://github.com/yuzu-emu/liftinstall.git
synced 2025-07-27 05:21:08 +00:00
Remove useless logging from frontend
This commit is contained in:
parent
58530ef352
commit
08cf5dea6f
|
@ -219,15 +219,12 @@
|
||||||
|
|
||||||
var results = {};
|
var results = {};
|
||||||
|
|
||||||
console.log("Packages: " + this.config.packages);
|
|
||||||
|
|
||||||
for (var package_index = 0; package_index < this.config.packages.length; package_index++) {
|
for (var package_index = 0; package_index < this.config.packages.length; package_index++) {
|
||||||
var current_package = this.config.packages[package_index];
|
var current_package = this.config.packages[package_index];
|
||||||
if (current_package.default != null) {
|
if (current_package.default != null) {
|
||||||
results[current_package.name] = current_package.default;
|
results[current_package.name] = current_package.default;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
console.log("Results: " + results);
|
|
||||||
|
|
||||||
results["path"] = this.install_location;
|
results["path"] = this.install_location;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue