Reputation: 3608
I am using sbt for an Akka project. I want to redirect the output of the logger. Therefore I'd like to use logback.
What do I have to add to build.sbt
to manage the library dependency for logback?
Upvotes: 5
Views: 3854
Reputation: 3608
Add the following to build.sbt
:
libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.1.3"
Upvotes: 8