Removed console.log line

This commit is contained in:
Derek H Osborne 2022-08-24 17:22:16 -05:00
parent 08f8c2b434
commit 6e02a70eea

@ -152,7 +152,6 @@ export class Product {
this.prog += progress; this.prog += progress;
for (const pos of Object.keys(employeeProd)) { for (const pos of Object.keys(employeeProd)) {
console.log(`${pos} ${this.creationProd[pos]} += ${(employeeProd[pos] * progress) / 100}`);
this.creationProd[pos] += (employeeProd[pos] * progress) / 100; this.creationProd[pos] += (employeeProd[pos] * progress) / 100;
} }
} }