shawenguan 1 год назад
Родитель
Сommit
fa7c9aeed9
1 измененных файлов с 3 добавлено и 0 удалено
  1. 3 0
      Scripts/168/pksPlanHelper.js

+ 3 - 0
Scripts/168/pksPlanHelper.js

@@ -196,6 +196,7 @@ function checkPlanABuyNotify(pksPlanItemData, pksPlanListData){
 
 async function getPksPlanList(lotCode, date, rows=30) {
 	const url = `https://${gHost}/api/LotteryPlan/getPksPlanList.do?lotCode=${lotCode}&rows=${rows}&date=${date}`;
+	magicJS.logger.info(url);
 	const myRequest = {
 		url: url,
 		headers: gCommonHeaders,
@@ -228,6 +229,7 @@ async function getPksPlanList(lotCode, date, rows=30) {
 
 async function pingPksPlan(date, rows=30) {
 	const url = `https://${gHost}/api/?rows=${rows}&date=${date}`;
+	magicJS.logger.info(url);
 	const myRequest = {
 		url: url,
 		headers: gCommonHeaders,
@@ -247,6 +249,7 @@ async function pingPksPlan(date, rows=30) {
 
 async function getPksPlanItem(lotCode) {
 	const url = `https://${gHost}/api/LotteryPlan/getPksPlan.do?lotCode=${lotCode}`;
+	magicJS.logger.info(url);
 	const myRequest = {
 		url: url,
 		headers: gCommonHeaders,