| Index: net/tools/quic/quic_packet_reader.cc
|
| diff --git a/net/tools/quic/quic_packet_reader.cc b/net/tools/quic/quic_packet_reader.cc
|
| index 27deb9635e0544e443190a3e567e9db57921230e..737cbc5488ec73d034da970c7ded1d925cc53eb4 100644
|
| --- a/net/tools/quic/quic_packet_reader.cc
|
| +++ b/net/tools/quic/quic_packet_reader.cc
|
| @@ -11,9 +11,9 @@
|
| #endif
|
| #include <string.h>
|
|
|
| +#include "base/logging.h"
|
| #include "net/quic/core/quic_flags.h"
|
| #include "net/quic/platform/api/quic_bug_tracker.h"
|
| -#include "net/quic/platform/api/quic_logging.h"
|
| #include "net/quic/platform/api/quic_socket_address.h"
|
| #include "net/tools/quic/platform/impl/quic_socket_utils.h"
|
| #include "net/tools/quic/quic_dispatcher.h"
|
| @@ -145,7 +145,7 @@
|
| // We may not have read all of the packets available on the socket.
|
| return packets_read == kNumPacketsPerReadMmsgCall;
|
| #else
|
| - QUIC_LOG(FATAL) << "Unsupported";
|
| + LOG(FATAL) << "Unsupported";
|
| return false;
|
| #endif
|
| }
|
|
|