This is an automated email from the ASF dual-hosted git repository.

marong pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-gluten.git


The following commit(s) were added to refs/heads/main by this push:
     new e60dfd213 [VL] Hot fix - mistakenly changed debug log (#6751)
e60dfd213 is described below

commit e60dfd21317888eb890fb084542ae41c25dc31d7
Author: Rong Ma <[email protected]>
AuthorDate: Thu Aug 8 11:10:12 2024 +0800

    [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 5c6c4470b..e165d4a91 100644
--- a/cpp/velox/shuffle/VeloxHashShuffleWriter.cc
+++ b/cpp/velox/shuffle/VeloxHashShuffleWriter.cc
@@ -1404,7 +1404,7 @@ arrow::Result<uint32_t> 
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.


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to