| 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;
|
| }
|
|
|
|
|