summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorisherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-16 00:45:36 +0000
committerisherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-16 00:45:36 +0000
commitff1e67ec7c11ea1d960d16c29f43914b8fce7ae8 (patch)
treed9527bd63b3486836bb06ad8c9b21f9edebd6191
parentaaa80c9edbb4234a89e05c5bbd53d9a4f790e86e (diff)
downloadchromium_src-ff1e67ec7c11ea1d960d16c29f43914b8fce7ae8.zip
chromium_src-ff1e67ec7c11ea1d960d16c29f43914b8fce7ae8.tar.gz
chromium_src-ff1e67ec7c11ea1d960d16c29f43914b8fce7ae8.tar.bz2
Change LOG(INFO) to VLOG(1) in net/base/bandwidth_metrics.h
BUG=none TEST=none Review URL: http://codereview.chromium.org/7885004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@101423 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--net/base/bandwidth_metrics.h6
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);
}