fix: remove extra console log

This commit is contained in:
divocat
2025-10-26 01:10:33 +03:00
parent 788c539e16
commit 694e4ca35a
2 changed files with 0 additions and 4 deletions

View File

@@ -39,7 +39,6 @@ export async function runSectionsCheck() {
const latencyGroup = await PodkopShellMethods.getClashApiGroupLatency(
section.code,
);
console.log('Latency group', latencyGroup);
const success = latencyGroup.success && !latencyGroup.data.message;
@@ -63,7 +62,6 @@ export async function runSectionsCheck() {
const latencyProxy = await PodkopShellMethods.getClashApiProxyLatency(
section.code,
);
console.log('Latency proxy', latencyProxy);
const success = latencyProxy.success && !latencyProxy.data.message;