|
@@ -119,6 +119,7 @@ public class SearchProductServiceImpl implements SearchProductService {
|
|
|
}
|
|
|
// 阿里云搜索
|
|
|
ResponseJson<String> result = queryProduct(queryStr, filter, identity, pageNum, pageSize, sortField, sortType);
|
|
|
+ log.info("商品查询返回结果------------------------》"+result.toString());
|
|
|
if (0 == result.getCode()) {
|
|
|
return result;
|
|
|
} else {
|
|
@@ -430,6 +431,8 @@ public class SearchProductServiceImpl implements SearchProductService {
|
|
|
searchParams = searchOpenService.getProductParams(queryStr, filter, identity, 1, requestSize, sortField, sortType);
|
|
|
}
|
|
|
try {
|
|
|
+ log.info("查询发送参数------------------------------------------>queryStr: "+queryStr);
|
|
|
+ log.info("查询发送参数------------------------------------------>searchParams: "+searchParams.toString());
|
|
|
// 查询推送
|
|
|
JSONObject result = searchOpenService.getResultJsonObject(queryStr, searchParams);
|
|
|
if (1 == result.getInt("status")) {
|