Commit 8c8aa156 authored by cbentzel@chromium.org's avatar cbentzel@chromium.org

Move PAC DHCP Windows log message back to VLOG()

This generates console spam if you are on a network that does not do WPAD-over-DHCP.

It looks like this was unintentionally upgraded to a LOG(WARNING) in https://codereview.chromium.org/169193002

Review URL: https://codereview.chromium.org/326403011

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@276917 0039d316-1c4b-4281-b951-d872f2087c98
parent 37efe48e
...@@ -261,7 +261,7 @@ std::string DhcpProxyScriptAdapterFetcher::GetPacURLFromDhcp( ...@@ -261,7 +261,7 @@ std::string DhcpProxyScriptAdapterFetcher::GetPacURLFromDhcp(
} while (res == ERROR_MORE_DATA && retry_count <= 3); } while (res == ERROR_MORE_DATA && retry_count <= 3);
if (res != NO_ERROR) { if (res != NO_ERROR) {
LOG(WARNING) << "Error fetching PAC URL from DHCP: " << res; VLOG(1) << "Error fetching PAC URL from DHCP: " << res;
UMA_HISTOGRAM_COUNTS("Net.DhcpWpadUnhandledDhcpError", 1); UMA_HISTOGRAM_COUNTS("Net.DhcpWpadUnhandledDhcpError", 1);
} else if (wpad_params.nBytesData) { } else if (wpad_params.nBytesData) {
return SanitizeDhcpApiString( return SanitizeDhcpApiString(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment