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

Unified Diff: mojo/edk/system/ports/node.cc

Issue 2315483002: Reduce the log level of frequently occuring DVLOGs (Closed)
Patch Set: Created 4 years, 3 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 | « mojo/edk/system/message_pipe_dispatcher.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/edk/system/ports/node.cc
diff --git a/mojo/edk/system/ports/node.cc b/mojo/edk/system/ports/node.cc
index c7f42f6f8b319e8f685ffcc8dc49984e338ea8e0..93bb7c38b727ce0a6fd56d967b561b3409f052d8 100644
--- a/mojo/edk/system/ports/node.cc
+++ b/mojo/edk/system/ports/node.cc
@@ -272,7 +272,7 @@ int Node::GetMessageIf(const PortRef& port_ref,
ScopedMessage* message) {
*message = nullptr;
- DVLOG(2) << "GetMessageIf for " << port_ref.name() << "@" << name_;
+ DVLOG(4) << "GetMessageIf for " << port_ref.name() << "@" << name_;
Port* port = port_ref.port();
{
@@ -428,7 +428,7 @@ int Node::OnUserMessage(ScopedMessage message) {
ports_buf << message->ports()[i];
}
- DVLOG(2) << "AcceptMessage " << event->sequence_num
+ DVLOG(4) << "AcceptMessage " << event->sequence_num
<< " [ports=" << ports_buf.str() << "] at "
<< port_name << "@" << name_;
#endif
@@ -1078,7 +1078,7 @@ int Node::WillSendMessage_Locked(const LockedPort& port,
}
#if DCHECK_IS_ON()
- DVLOG(2) << "Sending message "
+ DVLOG(4) << "Sending message "
<< GetEventData<UserEventData>(*message)->sequence_num
<< " [ports=" << ports_buf.str() << "]"
<< " from " << port_name << "@" << name_
« no previous file with comments | « mojo/edk/system/message_pipe_dispatcher.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698