Github user jackylk commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2357#discussion_r192742562
--- Diff:
integration/spark2/src/main/scala/org/apache/spark/sql/CarbonSession.scala ---
@@ -171,19 +170,24 @@ class CarbonSession(@transient val sc: SparkContext,
*/
private def trySearchMode(qe: QueryExecution, sse: SQLStart): DataFrame
= {
val analyzed = qe.analyzed
+ val LOG: LogService =
LogServiceFactory.getLogService(classOf[CarbonSession].getName)
--- End diff --
change `classOf[CarbonSession]` to `this.getClass`
---