diff options
author | megjablon <megjablon@chromium.org> | 2014-09-07 00:43:57 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-09-07 07:49:32 +0000 |
commit | 99d51dff5dbfc203414e1dc1ab08f255994edc77 (patch) | |
tree | 6ab80d5c1bfaebe2fd84a9d422b12cefba9d932b | |
parent | b71ba9f6bc75a94c03b09ba722008af3a5c068f7 (diff) | |
download | chromium_src-99d51dff5dbfc203414e1dc1ab08f255994edc77.zip chromium_src-99d51dff5dbfc203414e1dc1ab08f255994edc77.tar.gz chromium_src-99d51dff5dbfc203414e1dc1ab08f255994edc77.tar.bz2 |
Removing LOG(WARNING) from DataReductionProxyUsageStats that made it in https://codereview.chromium.org/510353004/
BUG=409934
Review URL: https://codereview.chromium.org/547753003
Cr-Commit-Position: refs/heads/master@{#293661}
-rw-r--r-- | components/data_reduction_proxy/browser/data_reduction_proxy_usage_stats.cc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/components/data_reduction_proxy/browser/data_reduction_proxy_usage_stats.cc b/components/data_reduction_proxy/browser/data_reduction_proxy_usage_stats.cc index bdbb9bf..b240947 100644 --- a/components/data_reduction_proxy/browser/data_reduction_proxy_usage_stats.cc +++ b/components/data_reduction_proxy/browser/data_reduction_proxy_usage_stats.cc @@ -165,11 +165,6 @@ void DataReductionProxyUsageStats::RecordBypassedBytesHistograms( const net::ProxyConfig& data_reduction_proxy_config) { int64 content_length = request.received_response_content_length(); - if (data_reduction_proxy_enabled.GetValue()) { - LOG(WARNING) << "managed pac: " << (!data_reduction_proxy_config.Equals( - request.context()->proxy_service()->config()) ? "true" : "false"); - } - if (data_reduction_proxy_enabled.GetValue() && !data_reduction_proxy_config.Equals( request.context()->proxy_service()->config())) { |