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

Unified Diff: content/browser/renderer_host/p2p/socket_host_udp.cc

Issue 84293002: LOG(INFO) -> VLOG(0) in content/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: whitespace Created 7 years, 1 month 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
Index: content/browser/renderer_host/p2p/socket_host_udp.cc
diff --git a/content/browser/renderer_host/p2p/socket_host_udp.cc b/content/browser/renderer_host/p2p/socket_host_udp.cc
index e199d94260e27bfdaccb8376526aac2175d1b489..6b433f46ffe9a2379e15f947cd302515fd459d9f 100644
--- a/content/browser/renderer_host/p2p/socket_host_udp.cc
+++ b/content/browser/renderer_host/p2p/socket_host_udp.cc
@@ -185,7 +185,7 @@ void P2PSocketHostUdp::Send(const net::IPEndPoint& to,
}
if (throttler_->DropNextPacket(data.size())) {
- LOG(INFO) << "STUN message is dropped due to high volume.";
+ VLOG(0) << "STUN message is dropped due to high volume.";
// Do not reset socket.
return;
}
@@ -264,7 +264,7 @@ void P2PSocketHostUdp::HandleSendResult(uint64 packet_id, int result) {
if (result > 0) {
message_sender_->Send(new P2PMsg_OnSendComplete(id_));
} else if (IsTransientError(result)) {
- LOG(INFO) << "sendto() has failed twice returning a "
+ VLOG(0) << "sendto() has failed twice returning a "
" transient error. Dropping the packet.";
} else if (result < 0) {
LOG(ERROR) << "Error when sending data in UDP socket: " << result;
« no previous file with comments | « content/browser/renderer_host/media/video_capture_oracle.cc ('k') | content/browser/tracing/trace_subscriber_stdio.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698