Skip to content

Commit

Permalink
[SPARK-47146][CORE][FOLLOWUP] Rename incorrect logger name
Browse files Browse the repository at this point in the history
### 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 apache#45404 from JacobZheng0927/loggerNameFix.

Authored-by: JacobZheng0927 <[email protected]>
Signed-off-by: Hyukjin Kwon <[email protected]>
  • Loading branch information
JacobZheng0927 authored and HyukjinKwon committed Mar 6, 2024
1 parent 5876162 commit 5089140
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
* 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;
Expand Down

0 comments on commit 5089140

Please sign in to comment.