| Index: mojo/edk/system/message_pipe_dispatcher.cc
|
| diff --git a/mojo/edk/system/message_pipe_dispatcher.cc b/mojo/edk/system/message_pipe_dispatcher.cc
|
| index 23e5a3fb47dd0bbb478d78ba2d41d10242d15364..f06054d7e6e9d585017a4a7ca6bdf8577ccd74fe 100644
|
| --- a/mojo/edk/system/message_pipe_dispatcher.cc
|
| +++ b/mojo/edk/system/message_pipe_dispatcher.cc
|
| @@ -106,7 +106,7 @@ Dispatcher::Type MessagePipeDispatcher::GetType() const {
|
|
|
| MojoResult MessagePipeDispatcher::Close() {
|
| base::AutoLock lock(signal_lock_);
|
| - DVLOG(1) << "Closing message pipe " << pipe_id_ << " endpoint " << endpoint_
|
| + DVLOG(2) << "Closing message pipe " << pipe_id_ << " endpoint " << endpoint_
|
| << " [port=" << port_.name() << "]";
|
| return CloseNoLock();
|
| }
|
| @@ -141,7 +141,7 @@ MojoResult MessagePipeDispatcher::WriteMessage(
|
| size_t num_bytes = message->num_bytes();
|
| int rv = node_controller_->SendMessage(port_, message->TakePortsMessage());
|
|
|
| - DVLOG(1) << "Sent message on pipe " << pipe_id_ << " endpoint " << endpoint_
|
| + DVLOG(2) << "Sent message on pipe " << pipe_id_ << " endpoint " << endpoint_
|
| << " [port=" << port_.name() << "; rv=" << rv
|
| << "; num_bytes=" << num_bytes << "]";
|
|
|
| @@ -536,12 +536,12 @@ void MessagePipeDispatcher::OnPortStatusChanged() {
|
| message_size = message.num_payload_bytes();
|
| return false;
|
| }, &unused);
|
| - DVLOG(1) << "New message detected on message pipe " << pipe_id_
|
| + DVLOG(2) << "New message detected on message pipe " << pipe_id_
|
| << " endpoint " << endpoint_ << " [port=" << port_.name()
|
| << "; size=" << message_size << "]";
|
| }
|
| if (port_status.peer_closed) {
|
| - DVLOG(1) << "Peer closure detected on message pipe " << pipe_id_
|
| + DVLOG(2) << "Peer closure detected on message pipe " << pipe_id_
|
| << " endpoint " << endpoint_ << " [port=" << port_.name() << "]";
|
| }
|
| }
|
|
|