Remove unnecessary console.log

This commit is contained in:
tobspr 2020-05-14 10:35:34 +02:00
parent d194b5ad86
commit 3de5d45ad8
1 changed files with 0 additions and 1 deletions

View File

@ -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;
}