| Index: ipc/mojo/ipc_channel_mojo.cc
|
| diff --git a/ipc/mojo/ipc_channel_mojo.cc b/ipc/mojo/ipc_channel_mojo.cc
|
| index 434d09d7c867d62b78a365b49a9d1d37e0515675..0d77fb9b16878a041940c5aa40047572f0294baf 100644
|
| --- a/ipc/mojo/ipc_channel_mojo.cc
|
| +++ b/ipc/mojo/ipc_channel_mojo.cc
|
| @@ -141,7 +141,7 @@ void ServerChannelMojo::OnPipeAvailable(
|
| MojoResult create_result =
|
| mojo::CreateMessagePipe(nullptr, &message_pipe_, &peer);
|
| if (create_result != MOJO_RESULT_OK) {
|
| - DLOG(WARNING) << "mojo::CreateMessagePipe failed: " << create_result;
|
| + LOG(WARNING) << "mojo::CreateMessagePipe failed: " << create_result;
|
| listener()->OnChannelError();
|
| return;
|
| }
|
| @@ -392,8 +392,8 @@ MojoResult ChannelMojo::ReadFromMessageAttachmentSet(
|
| mojo::embedder::PlatformHandle(file.release())),
|
| &wrapped_handle);
|
| if (MOJO_RESULT_OK != wrap_result) {
|
| - DLOG(WARNING) << "Pipe failed to wrap handles. Closing: "
|
| - << wrap_result;
|
| + LOG(WARNING) << "Pipe failed to wrap handles. Closing: "
|
| + << wrap_result;
|
| set->CommitAll();
|
| return wrap_result;
|
| }
|
| @@ -429,7 +429,7 @@ MojoResult ChannelMojo::WriteToMessageAttachmentSet(
|
| mojo::MakeScopedHandle(mojo::Handle(handle_buffer[i]))));
|
| DCHECK(ok);
|
| if (!ok) {
|
| - DLOG(ERROR) << "Failed to add new Mojo handle.";
|
| + LOG(ERROR) << "Failed to add new Mojo handle.";
|
| return MOJO_RESULT_UNKNOWN;
|
| }
|
| }
|
|
|