Author: doogie
Date: Sun May 30 22:08:42 2010
New Revision: 949625
URL: http://svn.apache.org/viewvc?rev=949625&view=rev
Log:
Check whether any indices were created before printing a message saying what
was done; handles the case when none were created.
Modified:
ofbiz/trunk/framework/entity/src/org/ofbiz/entity/jdbc/DatabaseUtil.java
Modified:
ofbiz/trunk/framework/entity/src/org/ofbiz/entity/jdbc/DatabaseUtil.java
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/jdbc/DatabaseUtil.java?rev=949625&r1=949624&r2=949625&view=diff
==============================================================================
--- ofbiz/trunk/framework/entity/src/org/ofbiz/entity/jdbc/DatabaseUtil.java
(original)
+++ ofbiz/trunk/framework/entity/src/org/ofbiz/entity/jdbc/DatabaseUtil.java
Sun May 30 22:08:42 2010
@@ -644,7 +644,7 @@ public class DatabaseUtil {
}
}
}
- if (Debug.infoOn()) Debug.logInfo("Created " + numIndicesCreated +
" indices", module);
+ if (numIndicesCreated > 0 && Debug.infoOn())
Debug.logInfo("Created " + numIndicesCreated + " indices", module);
}