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

Unified Diff: net/quic/quic_session.cc

Issue 83123006: Conver DLOG(INFO) to DVLOG(1) in QUIC code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix new messages 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
« no previous file with comments | « net/quic/quic_received_packet_manager.cc ('k') | net/quic/quic_stream_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_session.cc
diff --git a/net/quic/quic_session.cc b/net/quic/quic_session.cc
index f968b69a7947bb3e57c3344b5761cbffd6a9091f..c70ca18a1f3293ff70a40b846cf0e09717947631 100644
--- a/net/quic/quic_session.cc
+++ b/net/quic/quic_session.cc
@@ -274,11 +274,11 @@ void QuicSession::CloseStream(QuicStreamId stream_id) {
void QuicSession::CloseStreamInner(QuicStreamId stream_id,
bool locally_reset) {
- DLOG(INFO) << ENDPOINT << "Closing stream " << stream_id;
+ DVLOG(1) << ENDPOINT << "Closing stream " << stream_id;
ReliableStreamMap::iterator it = stream_map_.find(stream_id);
if (it == stream_map_.end()) {
- DLOG(INFO) << ENDPOINT << "Stream is already closed: " << stream_id;
+ DVLOG(1) << ENDPOINT << "Stream is already closed: " << stream_id;
return;
}
ReliableQuicStream* stream = it->second;
@@ -392,7 +392,7 @@ QuicConfig* QuicSession::config() {
}
void QuicSession::ActivateStream(ReliableQuicStream* stream) {
- DLOG(INFO) << ENDPOINT << "num_streams: " << stream_map_.size()
+ DVLOG(1) << ENDPOINT << "num_streams: " << stream_map_.size()
<< ". activating " << stream->id();
DCHECK_EQ(stream_map_.count(stream->id()), 0u);
stream_map_[stream->id()] = stream;
« no previous file with comments | « net/quic/quic_received_packet_manager.cc ('k') | net/quic/quic_stream_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698