From d6a4574ada32c5fec335f582fcfa062341764b09 Mon Sep 17 00:00:00 2001 From: "alexeypa@chromium.org" Date: Tue, 16 Oct 2012 19:53:00 +0000 Subject: Removing "WinHttpGetProxyForUrl failed" message. WinHttpGetProxyForUrl() can fail in some network configurations. For example it often fails when running in a home network when it cannot download the PAC script. In other words it is normal for this function to fail and the calling cade should just be able to handle it (which is does already). BUG=156135 Review URL: https://codereview.chromium.org/11183007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@162220 0039d316-1c4b-4281-b951-d872f2087c98 --- net/proxy/proxy_resolver_winhttp.cc | 1 - 1 file changed, 1 deletion(-) (limited to 'net') diff --git a/net/proxy/proxy_resolver_winhttp.cc b/net/proxy/proxy_resolver_winhttp.cc index 46665fc..1e14fbb 100644 --- a/net/proxy/proxy_resolver_winhttp.cc +++ b/net/proxy/proxy_resolver_winhttp.cc @@ -76,7 +76,6 @@ int ProxyResolverWinHttp::GetProxyForURL(const GURL& query_url, } if (!ok) { DWORD error = GetLastError(); - LOG(ERROR) << "WinHttpGetProxyForUrl failed: " << error; // If we got here because of RPC timeout during out of process PAC // resolution, no further requests on this session are going to work. if (ERROR_WINHTTP_TIMEOUT == error || -- cgit v1.1