You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by gu...@apache.org on 2024/03/06 13:00:15 UTC

(spark) branch branch-3.5 updated: [SPARK-47146][CORE][FOLLOWUP] Rename incorrect logger name

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

gurwls223 pushed a commit to branch branch-3.5
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/branch-3.5 by this push:
     new 3f547694978d [SPARK-47146][CORE][FOLLOWUP] Rename incorrect logger name
3f547694978d is described below

commit 3f547694978db178ab409f8ee101efe485c6df63
Author: JacobZheng0927 <zs...@163.com>
AuthorDate: Wed Mar 6 21:59:52 2024 +0900

    [SPARK-47146][CORE][FOLLOWUP] Rename incorrect logger name
    
    ### What changes were proposed in this pull request?
    Rename incorrect logger name in `UnsafeSorterSpillReader`.
    
    ### Why are the changes needed?
    The logger name in UnsafeSorterSpillReader is incorrect.
    
    ### Does this PR introduce _any_ user-facing change?
    No
    
    ### How was this patch tested?
    No
    
    ### Was this patch authored or co-authored using generative AI tooling?
    No
    
    Closes #45404 from JacobZheng0927/loggerNameFix.
    
    Authored-by: JacobZheng0927 <zs...@163.com>
    Signed-off-by: Hyukjin Kwon <gu...@apache.org>
    (cherry picked from commit 5089140e2e6a43ffef584b42aed5cd9bc11268b6)
    Signed-off-by: Hyukjin Kwon <gu...@apache.org>
---
 .../spark/util/collection/unsafe/sort/UnsafeSorterSpillReader.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/src/main/java/org/apache/spark/util/collection/unsafe/sort/UnsafeSorterSpillReader.java b/core/src/main/java/org/apache/spark/util/collection/unsafe/sort/UnsafeSorterSpillReader.java
index 8bd44c8c52c1..cf29835b2ce8 100644
--- a/core/src/main/java/org/apache/spark/util/collection/unsafe/sort/UnsafeSorterSpillReader.java
+++ b/core/src/main/java/org/apache/spark/util/collection/unsafe/sort/UnsafeSorterSpillReader.java
@@ -38,7 +38,7 @@ import java.io.*;
  * of the file format).
  */
 public final class UnsafeSorterSpillReader extends UnsafeSorterIterator implements Closeable {
-  private static final Logger logger = LoggerFactory.getLogger(ReadAheadInputStream.class);
+  private static final Logger logger = LoggerFactory.getLogger(UnsafeSorterSpillReader.class);
   public static final int MAX_BUFFER_SIZE_BYTES = 16777216; // 16 mb
 
   private InputStream in;


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org