From e60dfd21317888eb890fb084542ae41c25dc31d7 Mon Sep 17 00:00:00 2001 From: Rong Ma Date: Thu, 8 Aug 2024 11:10:12 +0800 Subject: [PATCH] [VL] Hot fix - mistakenly changed debug log (#6751) --- cpp/velox/shuffle/VeloxHashShuffleWriter.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/velox/shuffle/VeloxHashShuffleWriter.cc b/cpp/velox/shuffle/VeloxHashShuffleWriter.cc index 5c6c4470b2b5..e165d4a91da8 100644 --- a/cpp/velox/shuffle/VeloxHashShuffleWriter.cc +++ b/cpp/velox/shuffle/VeloxHashShuffleWriter.cc @@ -1404,7 +1404,7 @@ arrow::Result VeloxHashShuffleWriter::partitionBufferSizeAfterShrink(u arrow::Status VeloxHashShuffleWriter::preAllocPartitionBuffers(uint32_t preAllocBufferSize) { for (auto& pid : partitionUsed_) { auto newSize = std::max(preAllocBufferSize, partition2RowCount_[pid]); - LOG_IF(WARNING, partitionBufferSize_[pid] != newSize) + DLOG_IF(INFO, partitionBufferSize_[pid] != newSize) << "Actual partition buffer size - current: " << partitionBufferSize_[pid] << ", newSize: " << newSize << std::endl; // Make sure the size to be allocated is larger than the size to be filled.