Skip to content
Snippets Groups Projects
Unverified Commit 9112f31b authored by Tsuyoshi Ozawa's avatar Tsuyoshi Ozawa Committed by Sean Owen
Browse files

[SPARK-19207][SQL] LocalSparkSession should use Slf4JLoggerFactory.INSTANCE

## What changes were proposed in this pull request?

Using Slf4JLoggerFactory.INSTANCE instead of creating Slf4JLoggerFactory's object with constructor. It's deprecated.

## How was this patch tested?

With running StateStoreRDDSuite.

Author: Tsuyoshi Ozawa <ozawa@apache.org>

Closes #16570 from oza/SPARK-19207.
parent 89423539
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,7 @@ trait LocalSparkSession extends BeforeAndAfterEach with BeforeAndAfterAll { self
override def beforeAll() {
super.beforeAll()
InternalLoggerFactory.setDefaultFactory(new Slf4JLoggerFactory())
InternalLoggerFactory.setDefaultFactory(Slf4JLoggerFactory.INSTANCE)
}
override def afterEach() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment