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 <[email protected]>
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 <[email protected]>
Signed-off-by: Hyukjin Kwon <[email protected]>
(cherry picked from commit 5089140e2e6a43ffef584b42aed5cd9bc11268b6)
Signed-off-by: Hyukjin Kwon <[email protected]>
---
.../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: [email protected]
For additional commands, e-mail: [email protected]