From 2bc4d4e286e65f8b4e9ee21bccd913b62e6061f2 Mon Sep 17 00:00:00 2001 From: Felix Cheung Date: Thu, 12 Jan 2017 09:45:16 -0800 Subject: [SPARK-12757][CORE] lower "block locks were not released" log to info level ## What changes were proposed in this pull request? lower "block locks were not released" log to info level, as it is generating a lot of warnings in running ML, graph calls, as pointed out in the JIRA. Author: Felix Cheung Closes #16513 from felixcheung/blocklockswarn. --- core/src/main/scala/org/apache/spark/executor/Executor.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/src/main') diff --git a/core/src/main/scala/org/apache/spark/executor/Executor.scala b/core/src/main/scala/org/apache/spark/executor/Executor.scala index 789198f52c..b6c0f0c460 100644 --- a/core/src/main/scala/org/apache/spark/executor/Executor.scala +++ b/core/src/main/scala/org/apache/spark/executor/Executor.scala @@ -336,7 +336,7 @@ private[spark] class Executor( if (conf.getBoolean("spark.storage.exceptionOnPinLeak", false)) { throw new SparkException(errMsg) } else { - logWarning(errMsg) + logInfo(errMsg) } } } -- cgit v1.2.3