Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
java: [ 8, 11, 17, 21 ]
java: [ 11, 17, 21 ]
scala: [ 2.11.x, 2.12.x, 2.13.x, 3.x ]
runs-on: ubuntu-latest
steps:
Expand All @@ -31,7 +31,7 @@ jobs:
strategy:
fail-fast: false
matrix:
java: [ 8, 11, 17, 21 ]
java: [ 11, 17, 21 ]
scala: [ 2.13.x, 3.x ]
runs-on: ubuntu-latest
steps:
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,20 @@ if (logger.isDebugEnabled) logger.debug(s"Some $expensive message!")

## Prerequisites

* Java 8 or higher
* Java 11 or higher
* Scala Logging 3.x supports Java 8
* Scala 2.11, 2.12, 2.13 or 3.0
* Logging backend compatible with SLF4J

A compatible logging backend is [Logback](http://logback.qos.ch), add it to your sbt build definition:

```scala
libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.5.21"
libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.4.14"
```

If you are looking for a version compatible with Scala 2.10, check out Scala Logging 2.x.

If you are looking for a version compatible with SLF4J 1.x, check out Scala Logging 3.x.
**If you are looking for a version compatible with SLF4J 1.x, check out Scala Logging 3.x.**


## Getting Scala Logging
Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import sbt._

object Version {
val logback = "1.2.12"
val logback = "1.4.14"
val mockito = "3.2.10.0"
val scalaTest = "3.2.19"
val slf4j = "2.0.17"
Expand Down