diff --git a/core/src/main/java/org/apache/spark/shuffle/unsafe/UnsafeShuffleExternalSorter.java b/core/src/main/java/org/apache/spark/shuffle/unsafe/UnsafeShuffleExternalSorter.java index c9d818034c899..ccc1018a71168 100644 --- a/core/src/main/java/org/apache/spark/shuffle/unsafe/UnsafeShuffleExternalSorter.java +++ b/core/src/main/java/org/apache/spark/shuffle/unsafe/UnsafeShuffleExternalSorter.java @@ -288,7 +288,6 @@ public void cleanupAfterError() { * @return true if the record can be inserted without requiring more allocations, false otherwise. */ private boolean haveSpaceForRecord(int requiredSpace) { - logger.warn("Seeing if there's space for the record"); assert (requiredSpace > 0); // The sort array will automatically expand when inserting a new record, so we only need to // worry about it having free space when spilling is enabled.