diff options
author | skobes <skobes@chromium.org> | 2015-02-19 13:08:56 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-02-19 21:09:41 +0000 |
commit | f0e5a962e73ebc133d6890a919606ea1089f3ab4 (patch) | |
tree | 1e725fd114c2d6ffd0dba0e084d2da5deb722589 /net | |
parent | f899366965bbfab8be9d19eb0eaff56a2c50acb3 (diff) | |
download | chromium_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.cc | 3 |
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); } |