From 0d839e3bc2961ce9d21d258168f99e778bdb0c4b Mon Sep 17 00:00:00 2001
From: "a.niebisch" <a.niebisch@adito.de>
Date: Tue, 16 Jul 2019 15:14:26 +0200
Subject: [PATCH] logging Aufrufe entfernt.

---
 .../recordcontainers/index/affectedConsumerIds.js               | 2 --
 1 file changed, 2 deletions(-)

diff --git a/entity/Organisation_entity/recordcontainers/index/affectedConsumerIds.js b/entity/Organisation_entity/recordcontainers/index/affectedConsumerIds.js
index acbf20ae47..dbf78c1831 100644
--- a/entity/Organisation_entity/recordcontainers/index/affectedConsumerIds.js
+++ b/entity/Organisation_entity/recordcontainers/index/affectedConsumerIds.js
@@ -44,7 +44,6 @@ function addAddressIds(pRes, pCurrId)
     sql = "select ADDRESS.ADDRESSID from ADDRESS left join CONTACT on CONTACT.CONTACTID = ADDRESS.CONTACT_ID where CONTACT.ORGANISATION_ID = '" + pCurrId + "'";
     ids = db.array(db.COLUMN, sql, alias, 0 , 1 * datetime.ONE_MINUTE);
     
-    logging.log("Addresses: " + ids);
     addIds(pRes, "Addresses", ids);
 }
 
@@ -54,6 +53,5 @@ function addCommunicationIds(pRes, pCurrId)
     sql = "select COMMUNICATION.COMMUNICATIONID from COMMUNICATION left join CONTACT on CONTACT.CONTACTID = COMMUNICATION.CONTACT_ID where CONTACT.ORGANISATION_ID = '" + pCurrId + "'";
     ids = db.array(db.COLUMN, sql, alias, 0 , 1 * datetime.ONE_MINUTE);
     
-    logging.log("Communications: " + ids);
     addIds(pRes, "Communications", ids);
 }
-- 
GitLab