From 907bbe20ae376addc681f30e0e61ddfe443df97e Mon Sep 17 00:00:00 2001 From: ThinkChaos Date: Wed, 23 Oct 2019 01:08:39 +0200 Subject: [PATCH] Fix logging for Proxy Auto-Configuration (PAC) --- .../Protocols/OpenVPN/AppExtension/OpenVPNTunnelProvider.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TunnelKit/Sources/Protocols/OpenVPN/AppExtension/OpenVPNTunnelProvider.swift b/TunnelKit/Sources/Protocols/OpenVPN/AppExtension/OpenVPNTunnelProvider.swift index a9a7829..fa92b32 100644 --- a/TunnelKit/Sources/Protocols/OpenVPN/AppExtension/OpenVPNTunnelProvider.swift +++ b/TunnelKit/Sources/Protocols/OpenVPN/AppExtension/OpenVPNTunnelProvider.swift @@ -506,7 +506,7 @@ extension OpenVPNTunnelProvider: OpenVPNSessionDelegate { log.info("\tDomain: not configured") } - if options.httpProxy != nil || options.httpsProxy != nil { + if options.httpProxy != nil || options.httpsProxy != nil || options.proxyAutoConfigurationURL != nil { log.info("\tProxy:") if let proxy = options.httpProxy { log.info("\t\tHTTP: \(proxy.maskedDescription)")