Skip to content

Commit

Permalink
Internal changes
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 667601342
  • Loading branch information
protobuf-github-bot authored and copybara-github committed Aug 26, 2024
1 parent e26ef86 commit beb4bdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/google/protobuf/message_lite.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit beb4bdb

Please sign in to comment.