diff options
author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-21 20:40:57 +0000 |
---|---|---|
committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-21 20:40:57 +0000 |
commit | 3cd3202a53d2fbb2944a61c9286ff74b3ea6671b (patch) | |
tree | 7a363e8b0341019479237e6bdefb69c9be00e1e9 /chrome/plugin/plugin_channel.cc | |
parent | 34382243579faed133d9843053c98bbd38abdf59 (diff) | |
download | chromium_src-3cd3202a53d2fbb2944a61c9286ff74b3ea6671b.zip chromium_src-3cd3202a53d2fbb2944a61c9286ff74b3ea6671b.tar.gz chromium_src-3cd3202a53d2fbb2944a61c9286ff74b3ea6671b.tar.bz2 |
Convert LOG(INFO) to VLOG(1) - chrome/plugin/.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/3899004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63406 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/plugin/plugin_channel.cc')
-rw-r--r-- | chrome/plugin/plugin_channel.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/chrome/plugin/plugin_channel.cc b/chrome/plugin/plugin_channel.cc index 941db8c..a3216c6 100644 --- a/chrome/plugin/plugin_channel.cc +++ b/chrome/plugin/plugin_channel.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 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. @@ -189,8 +189,8 @@ PluginChannel::~PluginChannel() { bool PluginChannel::Send(IPC::Message* msg) { in_send_++; if (log_messages_) { - LOG(INFO) << "sending message @" << msg << " on channel @" << this - << " with type " << msg->type(); + VLOG(1) << "sending message @" << msg << " on channel @" << this + << " with type " << msg->type(); } bool result = PluginChannelBase::Send(msg); in_send_--; @@ -199,8 +199,8 @@ bool PluginChannel::Send(IPC::Message* msg) { void PluginChannel::OnMessageReceived(const IPC::Message& msg) { if (log_messages_) { - LOG(INFO) << "received message @" << &msg << " on channel @" << this - << " with type " << msg.type(); + VLOG(1) << "received message @" << &msg << " on channel @" << this + << " with type " << msg.type(); } PluginChannelBase::OnMessageReceived(msg); } |