Index: content/renderer/p2p/socket_dispatcher.cc |
diff --git a/content/renderer/p2p/socket_dispatcher.cc b/content/renderer/p2p/socket_dispatcher.cc |
index f189354478a9b8c9a95d26b6e1492ad3e6d3ebb3..a436ff0eee7544c101a1cc2e01c5c045a34cd207 100644 |
--- a/content/renderer/p2p/socket_dispatcher.cc |
+++ b/content/renderer/p2p/socket_dispatcher.cc |
@@ -131,7 +131,7 @@ void P2PSocketDispatcher::OnGetHostAddressResult( |
const net::IPAddressList& addresses) { |
P2PAsyncAddressResolver* request = host_address_requests_.Lookup(request_id); |
if (!request) { |
- VLOG(1) << "Received P2P message for socket that doesn't exist."; |
+ DVLOG(1) << "Received P2P message for socket that doesn't exist."; |
return; |
} |
@@ -186,7 +186,7 @@ P2PSocketClientImpl* P2PSocketDispatcher::GetClient(int socket_id) { |
// This may happen if the socket was closed, but the browser side |
// hasn't processed the close message by the time it sends the |
// message to the renderer. |
- VLOG(1) << "Received P2P message for socket that doesn't exist."; |
+ DVLOG(1) << "Received P2P message for socket that doesn't exist."; |
return NULL; |
} |