Authored by wujiexiang

add log

@@ -29,6 +29,7 @@ public class ProductServiceCaller { @@ -29,6 +29,7 @@ public class ProductServiceCaller {
29 * @return 29 * @return
30 */ 30 */
31 public List<String> getFullCategoryIdsBySubIds(List<Integer> subIds) { 31 public List<String> getFullCategoryIdsBySubIds(List<Integer> subIds) {
  32 + logger.info("getFullCategoryIdsBySubIds params:{}",subIds);
32 BatchRequest batchRequest = new BatchRequest(); 33 BatchRequest batchRequest = new BatchRequest();
33 batchRequest.setParams(subIds); 34 batchRequest.setParams(subIds);
34 ProductSortResponseBo[] bos = serviceCaller.call("ufoPlatform.getBaseSortsById", batchRequest, ProductSortResponseBo[].class); 35 ProductSortResponseBo[] bos = serviceCaller.call("ufoPlatform.getBaseSortsById", batchRequest, ProductSortResponseBo[].class);
@@ -46,6 +47,7 @@ public class ProductServiceCaller { @@ -46,6 +47,7 @@ public class ProductServiceCaller {
46 * @return 47 * @return
47 */ 48 */
48 public List<String> getFullSeriesIdsBySubIds(List<Integer> subIds) { 49 public List<String> getFullSeriesIdsBySubIds(List<Integer> subIds) {
  50 + logger.info("getFullSeriesIdsBySubIds params:{}",subIds);
49 BatchRequest batchRequest = new BatchRequest(); 51 BatchRequest batchRequest = new BatchRequest();
50 batchRequest.setParams(subIds); 52 batchRequest.setParams(subIds);
51 BrandSeriesResponseBo[] bos = serviceCaller.call("ufoPlatform.getBrandSeriesByIds", batchRequest, BrandSeriesResponseBo[].class); 53 BrandSeriesResponseBo[] bos = serviceCaller.call("ufoPlatform.getBrandSeriesByIds", batchRequest, BrandSeriesResponseBo[].class);