How to specify login as a project dependency?

I am using sbt for the Akka project. I want to redirect log output. Therefore, I would like to use logback.

What do I need to add in build.sbtto manage library dependency for a journal?

+3
source share
1 answer

Add to the build.sbtfollowing:

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

All Articles