From 117cf548fe08fb1b63ec8d676c5e0dfb4405d174 Mon Sep 17 00:00:00 2001 From: suyao Date: Sat, 22 Mar 2025 00:11:02 +0800 Subject: [PATCH] chore(ProxyManager): remove unnecessary console log --- src/main/services/ProxyManager.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/services/ProxyManager.ts b/src/main/services/ProxyManager.ts index 573d0a9f..24c741b5 100644 --- a/src/main/services/ProxyManager.ts +++ b/src/main/services/ProxyManager.ts @@ -73,7 +73,6 @@ export class ProxyManager { await this.setSessionsProxy({ mode: 'system' }) const proxyString = await session.defaultSession.resolveProxy('https://dummy.com') const [protocol, address] = proxyString.split(';')[0].split(' ') - console.log('protocol', protocol) const url = protocol === 'PROXY' ? `http://${address}` : null if (url && url !== this.config.url) { this.config.url = url.toLowerCase()