Author: lektran
Date: Fri Oct 26 18:28:51 2007
New Revision: 588895

URL: http://svn.apache.org/viewvc?rev=588895&view=rev
Log:
Pass in the parameters needed for the log message

Modified:
    
ofbiz/trunk/applications/order/src/org/ofbiz/order/shoppingcart/product/ProductPromoWorker.java

Modified: 
ofbiz/trunk/applications/order/src/org/ofbiz/order/shoppingcart/product/ProductPromoWorker.java
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/src/org/ofbiz/order/shoppingcart/product/ProductPromoWorker.java?rev=588895&r1=588894&r2=588895&view=diff
==============================================================================
--- 
ofbiz/trunk/applications/order/src/org/ofbiz/order/shoppingcart/product/ProductPromoWorker.java
 (original)
+++ 
ofbiz/trunk/applications/order/src/org/ofbiz/order/shoppingcart/product/ProductPromoWorker.java
 Fri Oct 26 18:28:51 2007
@@ -1119,9 +1119,9 @@
                                 Debug.logError("Error calling 
isStoreInventoryAvailable service, result is: " + invReqResult, module);
                                 throw new CartItemModifyException((String) 
invReqResult.get(ModelService.ERROR_MESSAGE));
                             } else if (!"Y".equals((String) 
invReqResult.get("available"))) {
+                                
Debug.logWarning(UtilProperties.getMessage(resource_error,"OrderNotApplyingGwpBecauseProductIdIsOutOfStockForProductPromoAction",
 UtilMisc.toMap("productId", productId, "productPromoAction", 
productPromoAction), cart.getLocale()), module);
                                 productId = null;
                                 product = null;
-                                
Debug.logWarning(UtilProperties.getMessage(resource_error,"OrderNotApplyingGwpBecauseProductIdIsOutOfStockForProductPromoAction",
 cart.getLocale()), module);
                             }
                         } catch (GenericServiceException e) {
                             String errMsg = "Fatal error calling inventory 
checking services: " + e.toString();


Reply via email to