From f0e5a962e73ebc133d6890a919606ea1089f3ab4 Mon Sep 17 00:00:00 2001 From: skobes Date: Thu, 19 Feb 2015 13:08:56 -0800 Subject: 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} --- net/proxy/proxy_service.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'net') 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); } -- cgit v1.1