From 6e02a70eea28cf7a545590148f07fabed29f1460 Mon Sep 17 00:00:00 2001 From: Derek H Osborne <34152227+dhosborne@users.noreply.github.com> Date: Wed, 24 Aug 2022 17:22:16 -0500 Subject: [PATCH] Removed console.log line --- src/Corporation/Product.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Corporation/Product.ts b/src/Corporation/Product.ts index d20b93245..815c284c3 100644 --- a/src/Corporation/Product.ts +++ b/src/Corporation/Product.ts @@ -152,7 +152,6 @@ export class Product { this.prog += progress; for (const pos of Object.keys(employeeProd)) { - console.log(`${pos} ${this.creationProd[pos]} += ${(employeeProd[pos] * progress) / 100}`); this.creationProd[pos] += (employeeProd[pos] * progress) / 100; } }