Skip to content

Commit c3742ae

Browse files
committed
Make history server log parse exceptions
1 parent 49a01c7 commit c3742ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/scala/org/apache/spark/deploy/history/FsHistoryProvider.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ private[history] class FsHistoryProvider(conf: SparkConf) extends ApplicationHis
233233
} catch {
234234
case e: Exception =>
235235
logError(
236-
s"Exception encountered when attempting to load application log ${fileStatus.getPath}")
236+
s"Exception encountered when attempting to load application log ${fileStatus.getPath}", e)
237237
None
238238
}
239239
}.toSeq.sortWith(compareAppInfo)

0 commit comments

Comments
 (0)