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

Unified Diff: mojo/edk/system/message_pipe_dispatcher.cc

Issue 2112803004: [mojo-edk] Demote DVLOGs in MessagePipeDispatcher to level 2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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() << "]";
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698