From 3de5d45ad88798298ff17f0697dc0e84d01fc13b Mon Sep 17 00:00:00 2001 From: tobspr Date: Thu, 14 May 2020 10:35:34 +0200 Subject: [PATCH] Remove unnecessary console.log --- src/js/game/production_analytics.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/js/game/production_analytics.js b/src/js/game/production_analytics.js index 23dd0e0d..1abac940 100644 --- a/src/js/game/production_analytics.js +++ b/src/js/game/production_analytics.js @@ -56,7 +56,6 @@ export class ProductionAnalytics extends BasicSerializableObject { if (item instanceof ShapeItem) { const definition = item.definition; const key = definition.getHash(); - console.log("Shape item produced:", key); const entry = this.history[enumAnalyticsDataSource.produced]; entry[entry.length - 1][key] = (entry[entry.length - 1][key] || 0) + 1; }