Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(206)

Unified Diff: ipc/ipc_sync_channel_unittest.cc

Issue 3889002: Covert LOG(INFO) to VLOG(1) - ipc/. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ipc/ipc_logging.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/ipc_sync_channel_unittest.cc
===================================================================
--- ipc/ipc_sync_channel_unittest.cc (revision 63075)
+++ ipc/ipc_sync_channel_unittest.cc (working copy)
@@ -708,10 +708,8 @@
}
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 @@
DCHECK(result);
DCHECK_EQ(response, expected_text_);
- LOG(INFO) << __FUNCTION__ << " Received reply: "
- << response.c_str();
+ VLOG(1) << __FUNCTION__ << " Received reply: " << response;
Done();
}
« no previous file with comments | « ipc/ipc_logging.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698