summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authoralexeypa@chromium.org <alexeypa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-16 19:53:00 +0000
committeralexeypa@chromium.org <alexeypa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-16 19:53:00 +0000
commitd6a4574ada32c5fec335f582fcfa062341764b09 (patch)
tree7f0203e60b1d42cd356f37e212d177c362faed14 /net
parent344aa38c679221826d5fb0cf1b04072a818e634d (diff)
downloadchromium_src-d6a4574ada32c5fec335f582fcfa062341764b09.zip
chromium_src-d6a4574ada32c5fec335f582fcfa062341764b09.tar.gz
chromium_src-d6a4574ada32c5fec335f582fcfa062341764b09.tar.bz2
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
Diffstat (limited to 'net')
-rw-r--r--net/proxy/proxy_resolver_winhttp.cc1
1 files changed, 0 insertions, 1 deletions
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 ||