Why not change them to verbose?
-Adrian
[email protected] wrote:
Author: hansbak
Date: Tue Jul 21 10:32:48 2009
New Revision: 796244
URL: http://svn.apache.org/viewvc?rev=796244&view=rev
Log:
removed debug log statements
Modified:
ofbiz/trunk/framework/widget/src/org/ofbiz/widget/form/ModelForm.java
Modified: ofbiz/trunk/framework/widget/src/org/ofbiz/widget/form/ModelForm.java
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/form/ModelForm.java?rev=796244&r1=796243&r2=796244&view=diff
==============================================================================
--- ofbiz/trunk/framework/widget/src/org/ofbiz/widget/form/ModelForm.java
(original)
+++ ofbiz/trunk/framework/widget/src/org/ofbiz/widget/form/ModelForm.java Tue
Jul 21 10:32:48 2009
@@ -1312,7 +1312,7 @@
int listSize = ((Integer) context.get("listSize")).intValue();
int lowIndex = ((Integer) context.get("lowIndex")).intValue();
int highIndex = ((Integer) context.get("highIndex")).intValue();
- Debug.logInfo("preparePager: low - high = " + lowIndex + " - " +
highIndex, module);
+ // Debug.logInfo("preparePager: low - high = " + lowIndex + " - " +
highIndex, module);
// we're passed a subset of the list, so use (0, viewSize) range
if (isOverridenListSize()) {
@@ -1330,7 +1330,7 @@
item = this.safeNext(iter);
}
- Debug.logInfo("preparePager: Found rows = " + itemIndex, module);
+ // Debug.logInfo("preparePager: Found rows = " + itemIndex, module);
// reduce the highIndex if number of items falls short
if ((itemIndex + 1) < highIndex) {