summaryrefslogtreecommitdiffstats
path: root/ipc/ipc_sync_channel_unittest.cc
diff options
context:
space:
mode:
authorpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-19 23:50:00 +0000
committerpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-19 23:50:00 +0000
commit2a9d601b66de546afaaa4f5aedaf2c26bfb21020 (patch)
tree1dd0f60870ef1b6c99444f58b7334216000c0044 /ipc/ipc_sync_channel_unittest.cc
parent6504ccb162e1fa1776cf20c466a9e9e71ada827f (diff)
downloadchromium_src-2a9d601b66de546afaaa4f5aedaf2c26bfb21020.zip
chromium_src-2a9d601b66de546afaaa4f5aedaf2c26bfb21020.tar.gz
chromium_src-2a9d601b66de546afaaa4f5aedaf2c26bfb21020.tar.bz2
Covert LOG(INFO) to VLOG(1) - ipc/.
This also eliminates IPC_MESSAGE_DEBUG_EXTRA and uses VLOG(2) for that. BUG=none TEST=none Review URL: http://codereview.chromium.org/3889002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63142 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/ipc_sync_channel_unittest.cc')
-rw-r--r--ipc/ipc_sync_channel_unittest.cc9
1 files changed, 3 insertions, 6 deletions
diff --git a/ipc/ipc_sync_channel_unittest.cc b/ipc/ipc_sync_channel_unittest.cc
index e01cc58..ffd2efd 100644
--- a/ipc/ipc_sync_channel_unittest.cc
+++ b/ipc/ipc_sync_channel_unittest.cc
@@ -708,10 +708,8 @@ class QueuedReplyServer : public Worker {
}
virtual void OnNestedTestMsg(Message* reply_msg) {
- LOG(INFO) << __FUNCTION__ << " Sending reply: "
- << reply_text_.c_str();
- SyncChannelNestedTestMsg_String::WriteReplyParams(
- reply_msg, reply_text_);
+ VLOG(1) << __FUNCTION__ << " Sending reply: " << reply_text_;
+ SyncChannelNestedTestMsg_String::WriteReplyParams(reply_msg, reply_text_);
Send(reply_msg);
Done();
}
@@ -747,8 +745,7 @@ class QueuedReplyClient : public Worker {
DCHECK(result);
DCHECK_EQ(response, expected_text_);
- LOG(INFO) << __FUNCTION__ << " Received reply: "
- << response.c_str();
+ VLOG(1) << __FUNCTION__ << " Received reply: " << response;
Done();
}