Skip to content
Snippets Groups Projects
Commit c75f9f58 authored by Johannes Goderbauer's avatar Johannes Goderbauer
Browse files

removed several logging.log

parent 67f58d66
No related branches found
No related tags found
No related merge requests found
......@@ -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"));
......
......@@ -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
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment