Author: jonesde
Date: Fri Mar 25 11:37:41 2011
New Revision: 1085331
URL:
http://svn.apache.org/viewvc?rev=1085331&view=revLog:
Small and unimportant change, combined two logWarning calls so they they get displayed together in the log on busy servers
Modified:
ofbiz/trunk/applications/product/src/org/ofbiz/shipment/shipment/ShipmentServices.java
Modified: ofbiz/trunk/applications/product/src/org/ofbiz/shipment/shipment/ShipmentServices.java
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/src/org/ofbiz/shipment/shipment/ShipmentServices.java?rev=1085331&r1=1085330&r2=1085331&view=diff==============================================================================
--- ofbiz/trunk/applications/product/src/org/ofbiz/shipment/shipment/ShipmentServices.java (original)
+++ ofbiz/trunk/applications/product/src/org/ofbiz/shipment/shipment/ShipmentServices.java Fri Mar 25 11:37:41 2011
@@ -281,8 +281,7 @@ public class ShipmentServices {
}
if (estimates == null || estimates.size() < 1) {
if (initialEstimateAmt.compareTo(BigDecimal.ZERO) == 0) {
- Debug.logWarning("Using the passed context : " + context, module);
- Debug.logWarning("No shipping estimates found; the shipping amount returned is 0! Condition used was: " + estFieldsCond, module);
+ Debug.logWarning("No shipping estimates found; the shipping amount returned is 0! Condition used was: " + estFieldsCond + "; Using the passed context: " + context, module);
}
Map<String, Object> respNow = ServiceUtil.returnSuccess();