Repository: spark Updated Branches: refs/heads/master c586b45dd -> 383425ab7
SPARK-3782 [CORE] Direct use of log4j in AkkaUtils interferes with certain logging configurations Although the underlying issue can I think be solved by having user code use slf4j 1.7.6+, it might be helpful and consistent to update Spark's slf4j too. I see no reason to believe it would be incompatible with other 1.7.x releases: http://www.slf4j.org/news.html Lots of different version of slf4j are in use in the wild and anecdotally I have never seen an issue mixing them. Author: Sean Owen <[email protected]> Closes #4184 from srowen/SPARK-3782 and squashes the following commits: 5608d28 [Sean Owen] Update slf4j to 1.7.10 Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/383425ab Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/383425ab Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/383425ab Branch: refs/heads/master Commit: 383425ab70aef4d4961f60309309ba5cb663db5f Parents: c586b45 Author: Sean Owen <[email protected]> Authored: Sun Jan 25 15:11:57 2015 -0800 Committer: Andrew Or <[email protected]> Committed: Sun Jan 25 15:11:57 2015 -0800 ---------------------------------------------------------------------- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/383425ab/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index b993391..05cb379 100644 --- a/pom.xml +++ b/pom.xml @@ -117,7 +117,7 @@ <scala.macros.version>2.0.1</scala.macros.version> <mesos.version>0.21.0</mesos.version> <mesos.classifier>shaded-protobuf</mesos.classifier> - <slf4j.version>1.7.5</slf4j.version> + <slf4j.version>1.7.10</slf4j.version> <log4j.version>1.2.17</log4j.version> <hadoop.version>1.0.4</hadoop.version> <protobuf.version>2.4.1</protobuf.version> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
