diff --git a/process/Attribute_lib/process.js b/process/Attribute_lib/process.js
index 488b7d7d594b4e979d0351441071cd4f304ee85e..37898cbc0b23bd7a1e47df931088405add877d79 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
     {