From beb4bdbed3fc11afda8dd7d97609e9edacfbbca2 Mon Sep 17 00:00:00 2001 From: Protobuf Team Bot Date: Mon, 26 Aug 2024 08:58:49 -0700 Subject: [PATCH] Internal changes PiperOrigin-RevId: 667601342 --- src/google/protobuf/message_lite.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/google/protobuf/message_lite.cc b/src/google/protobuf/message_lite.cc index 9abbf76576..b188a9e2d2 100644 --- a/src/google/protobuf/message_lite.cc +++ b/src/google/protobuf/message_lite.cc @@ -630,7 +630,7 @@ bool MessageLite::AppendPartialToCord(absl::Cord* output) const { const size_t size = ByteSizeLong(); const size_t total_size = size + output->size(); if (size > INT_MAX) { - ABSL_LOG(ERROR) << "Exceeded maximum protobuf size of 2GB."; + ABSL_LOG(ERROR) << "Exceeded maximum protobuf size of 2GB: " << size; return false; }