This is an automated email from the ASF dual-hosted git repository. gurwls223 pushed a commit to branch branch-3.4 in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/branch-3.4 by this push: new 245a33ce098b [SPARK-47146][CORE][FOLLOWUP] Rename incorrect logger name 245a33ce098b is described below commit 245a33ce098bbc099721925ca40dbebb190703b8 Author: JacobZheng0927 <zsh517559...@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 <zsh517559...@163.com> Signed-off-by: Hyukjin Kwon <gurwls...@apache.org> (cherry picked from commit 5089140e2e6a43ffef584b42aed5cd9bc11268b6) Signed-off-by: Hyukjin Kwon <gurwls...@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-unsubscr...@spark.apache.org For additional commands, e-mail: commits-h...@spark.apache.org