aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorJack Koenig2019-11-29 14:45:14 -0800
committerJack Koenig2019-11-29 14:45:14 -0800
commit3e626e39a1cdae0a376decaed27b842986a700e0 (patch)
tree509a1780ad55146dfc7697f33dc6d56846d1195c /build.sbt
parentfc014311740a7c31ed006fd2ab5ae7173c284a21 (diff)
Remove scala-logging fully in favor of our own logger
There was some vestigial logging that conflicts with the homebrewed logger used by most of the codebase
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt4
1 files changed, 0 insertions, 4 deletions
diff --git a/build.sbt b/build.sbt
index 156d4138..f7b43fe7 100644
--- a/build.sbt
+++ b/build.sbt
@@ -55,10 +55,6 @@ javacOptions ++= javacOptionsVersion(scalaVersion.value)
libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value
-libraryDependencies += "com.typesafe.scala-logging" %% "scala-logging" % "3.9.0"
-
-libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.2.3"
-
// sbt 1.2.6 fails with `Symbol 'term org.junit' is missing from the classpath`
// when compiling tests under 2.11.12
// An explicit dependency on junit seems to alleviate this.