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

Unified Diff: net/quic/test_tools/simulator/queue.cc

Issue 2629723003: Revert of Add quic_logging (Closed)
Patch Set: Created 3 years, 11 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 | « net/quic/test_tools/simulator/README.md ('k') | net/quic/test_tools/simulator/simulator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/test_tools/simulator/queue.cc
diff --git a/net/quic/test_tools/simulator/queue.cc b/net/quic/test_tools/simulator/queue.cc
index 12073f8e0a8a3e46069bb4aa92ae0bc54bc1ba76..1c45ab18cc360080d0371fb490dd317f3591f6c5 100644
--- a/net/quic/test_tools/simulator/queue.cc
+++ b/net/quic/test_tools/simulator/queue.cc
@@ -2,7 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "net/quic/platform/api/quic_logging.h"
#include "net/quic/test_tools/simulator/queue.h"
using std::string;
@@ -26,11 +25,11 @@
void Queue::AcceptPacket(std::unique_ptr<Packet> packet) {
if (packet->size + bytes_queued_ > capacity_) {
- QUIC_DVLOG(1) << "Queue [" << name() << "] has received a packet from ["
- << packet->source << "] to [" << packet->destination
- << "] which is over capacity. Dropping it.";
- QUIC_DVLOG(1) << "Queue size: " << bytes_queued_ << " out of " << capacity_
- << ". Packet size: " << packet->size;
+ DVLOG(1) << "Queue [" << name() << "] has received a packet from ["
+ << packet->source << "] to [" << packet->destination
+ << "] which is over capacity. Dropping it.";
+ DVLOG(1) << "Queue size: " << bytes_queued_ << " out of " << capacity_
+ << ". Packet size: " << packet->size;
return;
}
« no previous file with comments | « net/quic/test_tools/simulator/README.md ('k') | net/quic/test_tools/simulator/simulator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698