| Index: net/quic/core/quic_packet_generator.cc
|
| diff --git a/net/quic/core/quic_packet_generator.cc b/net/quic/core/quic_packet_generator.cc
|
| index 3d86874fc4426dcf46e4994277e722485a27a261..3ad8accb79e2a4c197ca3fdaab944e7befba5f04 100644
|
| --- a/net/quic/core/quic_packet_generator.cc
|
| +++ b/net/quic/core/quic_packet_generator.cc
|
| @@ -6,9 +6,9 @@
|
|
|
| #include <cstdint>
|
|
|
| +#include "base/logging.h"
|
| #include "net/quic/core/quic_utils.h"
|
| #include "net/quic/platform/api/quic_bug_tracker.h"
|
| -#include "net/quic/platform/api/quic_logging.h"
|
|
|
| using base::StringPiece;
|
|
|
| @@ -200,7 +200,7 @@
|
| << " number of queued_control_frames: "
|
| << queued_control_frames_.size();
|
| if (!queued_control_frames_.empty()) {
|
| - QUIC_LOG(INFO) << queued_control_frames_[0];
|
| + VLOG(1) << queued_control_frames_[0];
|
| }
|
| delegate_->OnUnrecoverableError(QUIC_FAILED_TO_SERIALIZE_PACKET,
|
| "Single frame cannot fit into a packet",
|
|
|