diff --git a/entity/Offer_entity/entityfields/deliveryterms/valueProcess.js b/entity/Offer_entity/entityfields/deliveryterms/valueProcess.js
index 2e15600563d5bc8b07adab99b54f469763806541..911cd325a0adcf0def03c682d6926d51aae3a143 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 d1f68a387e970ef771d0896861221c0576bcc52d..af40b179198249a317e34ed06a5f28a202a21c5e 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 195c85cb415d1ab8dfcd35cf22bfff512480a6bd..4a64fc6b3797fe984b3bc61c6d7bf638dc82ff0a 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