| Index: net/quic/test_tools/simulator/simulator.cc
|
| diff --git a/net/quic/test_tools/simulator/simulator.cc b/net/quic/test_tools/simulator/simulator.cc
|
| index 1f82517fc21fa000e0cf5e497e7eb460ba412432..951ebbaea3335a290fe0d748ec1603c1fff937df 100644
|
| --- a/net/quic/test_tools/simulator/simulator.cc
|
| +++ b/net/quic/test_tools/simulator/simulator.cc
|
| @@ -4,7 +4,6 @@
|
|
|
| #include "base/memory/ptr_util.h"
|
| #include "net/quic/core/crypto/quic_random.h"
|
| -#include "net/quic/platform/api/quic_logging.h"
|
| #include "net/quic/test_tools/simulator/simulator.h"
|
|
|
| namespace net {
|
| @@ -128,8 +127,8 @@
|
| const auto current_event_it = schedule_.begin();
|
| QuicTime event_time = current_event_it->first;
|
| Actor* actor = current_event_it->second;
|
| - QUIC_DVLOG(3) << "At t = " << event_time.ToDebuggingValue() << ", calling "
|
| - << actor->name();
|
| + DVLOG(3) << "At t = " << event_time.ToDebuggingValue() << ", calling "
|
| + << actor->name();
|
|
|
| Unschedule(actor);
|
|
|
|
|