summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorskobes <skobes@chromium.org>2015-02-19 13:08:56 -0800
committerCommit bot <commit-bot@chromium.org>2015-02-19 21:09:41 +0000
commitf0e5a962e73ebc133d6890a919606ea1089f3ab4 (patch)
tree1e725fd114c2d6ffd0dba0e084d2da5deb722589 /net
parentf899366965bbfab8be9d19eb0eaff56a2c50acb3 (diff)
downloadchromium_src-f0e5a962e73ebc133d6890a919606ea1089f3ab4.zip
chromium_src-f0e5a962e73ebc133d6890a919606ea1089f3ab4.tar.gz
chromium_src-f0e5a962e73ebc133d6890a919606ea1089f3ab4.tar.bz2
Make warning verbose in CreateUsingSystemProxyResolver.
Reduces stderr log spam from content_shell on Linux. Review URL: https://codereview.chromium.org/923893004 Cr-Commit-Position: refs/heads/master@{#317134}
Diffstat (limited to 'net')
-rw-r--r--net/proxy/proxy_service.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/net/proxy/proxy_service.cc b/net/proxy/proxy_service.cc
index bd7d825..fbacbda 100644
--- a/net/proxy/proxy_service.cc
+++ b/net/proxy/proxy_service.cc
@@ -896,8 +896,7 @@ ProxyService* ProxyService::CreateUsingSystemProxyResolver(
DCHECK(proxy_config_service);
if (!ProxyResolverFactoryForSystem::IsSupported()) {
- LOG(WARNING) << "PAC support disabled because there is no "
- "system implementation";
+ VLOG(1) << "PAC support disabled because there is no system implementation";
return CreateWithoutProxyResolver(proxy_config_service, net_log);
}