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

Unified Diff: ipc/mojo/ipc_mojo_handle_attachment.cc

Issue 1003483004: ChannelMojo: Turn DLOG to LOG for ERROR and WARNING (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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/mojo/ipc_mojo_bootstrap.cc ('k') | ipc/mojo/ipc_mojo_message_helper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/mojo/ipc_mojo_handle_attachment.cc
diff --git a/ipc/mojo/ipc_mojo_handle_attachment.cc b/ipc/mojo/ipc_mojo_handle_attachment.cc
index 46acd02efabcd23ded997eeb7925c8a6f9f4a325..98ac5c3c5e0e3d8705379f5e0d9aa27027b35155 100644
--- a/ipc/mojo/ipc_mojo_handle_attachment.cc
+++ b/ipc/mojo/ipc_mojo_handle_attachment.cc
@@ -27,7 +27,7 @@ base::PlatformFile MojoHandleAttachment::TakePlatformFile() {
MojoResult unwrap_result = mojo::embedder::PassWrappedPlatformHandle(
handle_.release().value(), &platform_handle);
if (unwrap_result != MOJO_RESULT_OK) {
- DLOG(ERROR) << "Pipe failed to covert handles. Closing: " << unwrap_result;
+ LOG(ERROR) << "Pipe failed to covert handles. Closing: " << unwrap_result;
return -1;
}
« no previous file with comments | « ipc/mojo/ipc_mojo_bootstrap.cc ('k') | ipc/mojo/ipc_mojo_message_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698