Merge pull request #126 from ThinkChaos/fix_pac_logging

Fix logging for Proxy Auto-Configuration (PAC)
This commit is contained in:
Davide De Rosa 2019-10-23 13:07:03 +02:00 committed by GitHub
commit 495944297c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -512,7 +512,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)")