tgr
tgr

Reputation: 3608

How to specify logback as project dependency?

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

Answers (1)

tgr
tgr

Reputation: 3608

Add the following to build.sbt:

libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.1.3"

Upvotes: 8

Related Questions