From 4a01c45aaf2dcf1bd4dd3ebe632a5493e75b40d7 Mon Sep 17 00:00:00 2001 From: Josh Rosen Date: Sun, 10 May 2015 16:13:24 -0700 Subject: [PATCH] Remove unnecessary log message --- .../apache/spark/shuffle/unsafe/UnsafeShuffleExternalSorter.java | 1 - 1 file changed, 1 deletion(-) 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.