From af29444c23bdc067bdd1b669019d8b5f41bfa7a2 Mon Sep 17 00:00:00 2001
From: "j.goderbauer" <j.goderbauer@adito.de>
Date: Tue, 11 Jun 2019 09:25:50 +0200
Subject: [PATCH] Attribute: Fixing the validation of attribute counts
 (min/max) in attributeRelations - removed logging

---
 process/Attribute_lib/process.js | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/process/Attribute_lib/process.js b/process/Attribute_lib/process.js
index 488b7d7d59..37898cbc0b 100644
--- a/process/Attribute_lib/process.js
+++ b/process/Attribute_lib/process.js
@@ -1,4 +1,3 @@
-import("system.logging");
 import("system.util");
 import("system.datetime");
 import("system.translate");
@@ -388,11 +387,6 @@ AttributeRelationUtils.validateAttributeCount = function (pRowId, pObjectType, p
     var deletedRows = vars.get("$field." + pConsumerField + ".deletedRows");
     var changedRows = vars.get("$field." + pConsumerField + ".changedRows");
     var insertedRows = vars.get("$field." + pConsumerField + ".insertedRows");
-    logging.log("------------------------");
-    logging.log("insertedRows = " + JSON.stringify(insertedRows, null, " "));
-    logging.log("changedRows = " + JSON.stringify(changedRows, null, " "));
-    logging.log("deletedRows = " + JSON.stringify(deletedRows, null, " "));
-
 
    if (deletedRows)
     {
@@ -413,7 +407,6 @@ AttributeRelationUtils.validateAttributeCount = function (pRowId, pObjectType, p
     //get the current count of usages considering the changes
     //this will merge the counts of attributeChanges and the already stored attributerelations
     var countObj = AttributeRelationUtils.countAttributeRelations(pRowId, pObjectType, attributeChanges);
-    logging.log("merged ones (countObj init):" + JSON.stringify(countObj, null, " "));
     
     if (insertedRows) //append the new rows
     {
-- 
GitLab