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

Unified Diff: chrome/renderer/media/cast_udp_transport.cc

Issue 698263003: [chrome/common/renderer/media && chrome/common/renderer/safe_browsing] Convert VLOGs to DVLOGs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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: chrome/renderer/media/cast_udp_transport.cc
diff --git a/chrome/renderer/media/cast_udp_transport.cc b/chrome/renderer/media/cast_udp_transport.cc
index a862e3f67fbd040fd874d97b7df1d3b6acefd8c3..0cecbcac3fad8d784679fe1b25017b00d0f6f707 100644
--- a/chrome/renderer/media/cast_udp_transport.cc
+++ b/chrome/renderer/media/cast_udp_transport.cc
@@ -18,8 +18,8 @@ CastUdpTransport::~CastUdpTransport() {
}
void CastUdpTransport::SetDestination(const net::IPEndPoint& remote_address) {
- VLOG(1) << "CastUdpTransport::SetDestination = "
- << remote_address.ToString();
+ DVLOG(1) << "CastUdpTransport::SetDestination = "
+ << remote_address.ToString();
remote_address_ = remote_address;
cast_session_->StartUDP(remote_address,
make_scoped_ptr(options_->DeepCopy()));
« no previous file with comments | « chrome/renderer/media/cast_session_delegate.cc ('k') | chrome/renderer/safe_browsing/phishing_classifier.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698