Revert "Update Scala Logging to officially supported one " (#172)

Reverts #157 due to library errors when the previous was is in the classpath already (i.e., in databricks) and not bringing any noted improvements or needed fixes. Exception:
java.lang.InstantiationError: com.typesafe.scalalogging.Logger
This reverts commit 56f7348.
This commit is contained in:
Nico Poggi 2018-10-19 17:33:34 +02:00 committed by GitHub
parent 0367ff65a6
commit d44caec277
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

View File

@ -42,7 +42,7 @@ libraryDependencies += "org.scalatest" %% "scalatest" % "2.2.1" % "test"
libraryDependencies += "org.yaml" % "snakeyaml" % "1.17"
libraryDependencies += "com.typesafe.scala-logging" %% "scala-logging" % "3.9.0"
libraryDependencies += "com.typesafe.scala-logging" %% "scala-logging-slf4j" % "2.1.2"
resolvers += "Apache Development Snapshot Repository" at "https://repository.apache.org/content/repositories/snapshots"

View File

@ -18,7 +18,7 @@ package com.databricks.spark.sql.perf
import java.util.UUID
import com.typesafe.scalalogging.{LazyLogging => Logging}
import com.typesafe.scalalogging.slf4j.{LazyLogging => Logging}
import scala.concurrent.duration._
import scala.collection.mutable.ArrayBuffer

View File

@ -1,6 +1,6 @@
package com.databricks.spark.sql.perf.mllib
import com.typesafe.scalalogging.{LazyLogging => Logging}
import com.typesafe.scalalogging.slf4j.{LazyLogging => Logging}
import org.apache.spark.ml.attribute.{NominalAttribute, NumericAttribute}
import org.apache.spark.ml.{Estimator, PipelineStage, Transformer}
import org.apache.spark.ml.evaluation.Evaluator

View File

@ -4,7 +4,7 @@ package com.databricks.spark.sql.perf.mllib
import scala.io.Source
import scala.language.implicitConversions
import com.typesafe.scalalogging.{LazyLogging => Logging}
import com.typesafe.scalalogging.slf4j.{LazyLogging => Logging}
import org.apache.spark.sql.{DataFrame, SQLContext}
import org.apache.spark.{SparkConf, SparkContext}

View File

@ -3,7 +3,7 @@ package com.databricks.spark.sql.perf.mllib
import scala.collection.mutable.ArrayBuffer
import scala.util.control.NonFatal
import com.typesafe.scalalogging.{LazyLogging => Logging}
import com.typesafe.scalalogging.slf4j.{LazyLogging => Logging}
import org.apache.spark.ml.{Estimator, Transformer}
import org.apache.spark.sql._