mirror of
https://github.com/itdoginfo/podkop.git
synced 2025-12-06 19:46:52 +03:00
fix: remove extra console log
This commit is contained in:
@@ -39,7 +39,6 @@ export async function runSectionsCheck() {
|
|||||||
const latencyGroup = await PodkopShellMethods.getClashApiGroupLatency(
|
const latencyGroup = await PodkopShellMethods.getClashApiGroupLatency(
|
||||||
section.code,
|
section.code,
|
||||||
);
|
);
|
||||||
console.log('Latency group', latencyGroup);
|
|
||||||
|
|
||||||
const success = latencyGroup.success && !latencyGroup.data.message;
|
const success = latencyGroup.success && !latencyGroup.data.message;
|
||||||
|
|
||||||
@@ -63,7 +62,6 @@ export async function runSectionsCheck() {
|
|||||||
const latencyProxy = await PodkopShellMethods.getClashApiProxyLatency(
|
const latencyProxy = await PodkopShellMethods.getClashApiProxyLatency(
|
||||||
section.code,
|
section.code,
|
||||||
);
|
);
|
||||||
console.log('Latency proxy', latencyProxy);
|
|
||||||
|
|
||||||
const success = latencyProxy.success && !latencyProxy.data.message;
|
const success = latencyProxy.success && !latencyProxy.data.message;
|
||||||
|
|
||||||
|
|||||||
@@ -3736,7 +3736,6 @@ async function runSectionsCheck() {
|
|||||||
const latencyGroup = await PodkopShellMethods.getClashApiGroupLatency(
|
const latencyGroup = await PodkopShellMethods.getClashApiGroupLatency(
|
||||||
section.code
|
section.code
|
||||||
);
|
);
|
||||||
console.log("Latency group", latencyGroup);
|
|
||||||
const success3 = latencyGroup.success && !latencyGroup.data.message;
|
const success3 = latencyGroup.success && !latencyGroup.data.message;
|
||||||
if (success3) {
|
if (success3) {
|
||||||
const latency2 = Object.values(latencyGroup.data).map((item) => item ? `${item}ms` : "n/a").join(" / ");
|
const latency2 = Object.values(latencyGroup.data).map((item) => item ? `${item}ms` : "n/a").join(" / ");
|
||||||
@@ -3753,7 +3752,6 @@ async function runSectionsCheck() {
|
|||||||
const latencyProxy = await PodkopShellMethods.getClashApiProxyLatency(
|
const latencyProxy = await PodkopShellMethods.getClashApiProxyLatency(
|
||||||
section.code
|
section.code
|
||||||
);
|
);
|
||||||
console.log("Latency proxy", latencyProxy);
|
|
||||||
const success2 = latencyProxy.success && !latencyProxy.data.message;
|
const success2 = latencyProxy.success && !latencyProxy.data.message;
|
||||||
if (success2) {
|
if (success2) {
|
||||||
return {
|
return {
|
||||||
|
|||||||
Reference in New Issue
Block a user