From c75f9f5815ac0693aecb10ad4e4d1979f4f9b066 Mon Sep 17 00:00:00 2001
From: "j.goderbauer" <j.goderbauer@adito.de>
Date: Tue, 2 Apr 2019 10:42:28 +0200
Subject: [PATCH] removed several logging.log

---
 .../Offer_entity/entityfields/deliveryterms/valueProcess.js | 1 -
 process/Report_lib/process.js                               | 4 ++--
 process/Sql_lib/process.js                                  | 6 +++---
 3 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/entity/Offer_entity/entityfields/deliveryterms/valueProcess.js b/entity/Offer_entity/entityfields/deliveryterms/valueProcess.js
index 2e15600563..911cd325a0 100644
--- a/entity/Offer_entity/entityfields/deliveryterms/valueProcess.js
+++ b/entity/Offer_entity/entityfields/deliveryterms/valueProcess.js
@@ -2,7 +2,6 @@ import("system.logging");
 import("system.result");
 import("system.vars");
 
-logging.log(vars.get("$param.OfferDeliveryTerm_param"))
 if (vars.exists("$param.OfferDeliveryTerm_param") && vars.get("$param.OfferDeliveryTerm_param")) 
 {
     result.string(vars.get("$param.OfferDeliveryTerm_param"));
diff --git a/process/Report_lib/process.js b/process/Report_lib/process.js
index d1f68a387e..af40b17919 100644
--- a/process/Report_lib/process.js
+++ b/process/Report_lib/process.js
@@ -15,8 +15,8 @@ import("system.vars");
  * reportData.add(moreDataValues);<br>
  * <br>
  * <br>
- * logging.log(reportData.getReportFields().toSource());<br>
- * logging.log(reportData.getReportData().toSource());<br>
+ * logMsg(reportData.getReportFields().toSource());<br>
+ * logMsg(reportData.getReportData().toSource());<br>
  * 
  * @class
  * @param {Array} [pFieldNames=[]] the report fieldnames as an array
diff --git a/process/Sql_lib/process.js b/process/Sql_lib/process.js
index 195c85cb41..4a64fc6b37 100644
--- a/process/Sql_lib/process.js
+++ b/process/Sql_lib/process.js
@@ -1062,12 +1062,12 @@ SqlUtils.getSingleColumnType = function(fieldOrTableName, columnName, alias) {
 *
 * sqlPageData(sql, blockSize, function (pData, pRunNo){
 *     var j = pData.length;//pData is the current block with data
-*     logging.log(pRunNo.toString() + "#" + j);//pRunNo is the amount how often the func. has been already called
+*     logMsg(pRunNo.toString() + "#" + j);//pRunNo is the amount how often the func. has been already called
 *     //you can calculate the progress easily by: progress = (blockSize* (pRunNo-1) + pData.length) / (allRows - startOffset)
 *     //example in per cent:
 *     var startOffset = 0;//we did not pass any startOffset to sqlPageData - this is equivalent to zero
 *     var progress = (blockSize* (pRunNo-1) + pData.length) / (allRows - startOffset);
-*     logging.log("progess: " + eMath.roundDec(progress * 100, 2, eMath.ROUND_CEILING) + "%");
+*     logMsg("progess: " + eMath.roundDec(progress * 100, 2, eMath.ROUND_CEILING) + "%");
 *
 *     for (var i = 0; i < j; i++)
 *     {
@@ -1076,7 +1076,7 @@ SqlUtils.getSingleColumnType = function(fieldOrTableName, columnName, alias) {
 *     }
 *
 *     count += pRunNo * 100;
-*     logging.log("count:" + count);//you cannot overwrite a variable of 'sqlPageData' by accident
+*     logMsg("count:" + count);//you cannot overwrite a variable of 'sqlPageData' by accident
 * });
 *
 * logging.show(letValues);//contains orgnames
-- 
GitLab