| Index: net/quic/quic_framer.cc
|
| diff --git a/net/quic/quic_framer.cc b/net/quic/quic_framer.cc
|
| index f78278b81dc8cb78f11025affaec67bc9633c6fd..3ca790302b2b9898ece73a78d52a5adb0e8ec4ec 100644
|
| --- a/net/quic/quic_framer.cc
|
| +++ b/net/quic/quic_framer.cc
|
| @@ -601,7 +601,8 @@ bool QuicFramer::ProcessDataPacket(QuicDataReader* encrypted_reader,
|
| }
|
|
|
| if (packet.length() > kMaxPacketSize) {
|
| - DLOG(WARNING) << "Packet too large: " << packet.length();
|
| + // If the packet has gotten this far, it should not be too large.
|
| + LOG(DFATAL) << "Packet too large:" << packet.length();
|
| return RaiseError(QUIC_PACKET_TOO_LARGE);
|
| }
|
|
|
|
|