Skip to content

Commit 0069e71

Browse files
committed
[SPARK-32003] Reword debug message.
1 parent 4b18369 commit 0069e71

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

core/src/main/scala/org/apache/spark/scheduler/DAGScheduler.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1941,7 +1941,8 @@ private[spark] class DAGScheduler(
19411941
hostToUnregisterOutputs: Option[String],
19421942
maybeEpoch: Option[Long] = None): Unit = {
19431943
val currentEpoch = maybeEpoch.getOrElse(mapOutputTracker.getEpoch)
1944-
logDebug(s"Removing executor $execId, fileLost: $fileLost, currentEpoch: $currentEpoch")
1944+
logDebug(s"Considering removal of executor $execId; " +
1945+
s"fileLost: $fileLost, currentEpoch: $currentEpoch")
19451946
if (!failedEpoch.contains(execId) || failedEpoch(execId) < currentEpoch) {
19461947
failedEpoch(execId) = currentEpoch
19471948
logInfo(s"Executor lost: $execId (epoch $currentEpoch)")

0 commit comments

Comments
 (0)