diff options
Diffstat (limited to 'net/base/bandwidth_metrics.h')
-rw-r--r-- | net/base/bandwidth_metrics.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/base/bandwidth_metrics.h b/net/base/bandwidth_metrics.h index ce1a498..47a7c03 100644 --- a/net/base/bandwidth_metrics.h +++ b/net/base/bandwidth_metrics.h @@ -1,4 +1,4 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -93,8 +93,8 @@ class BandwidthMetrics { double kbps = static_cast<double>(bytes_since_last_start_) * 8 / ms; ++num_data_samples_; data_sum_ += kbps; - LOG(INFO) << "Bandwidth: " << kbps - << "Kbps (avg " << bandwidth() << "Kbps)"; + VLOG(1) << "Bandwidth: " << kbps + << "Kbps (avg " << bandwidth() << "Kbps)"; int kbps_int = static_cast<int>(kbps); UMA_HISTOGRAM_COUNTS_10000("Net.DownloadBandwidth", kbps_int); } |