From 35d21ab89f316918e17a475dfb2ba7d39c5586a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=A2=A6=E5=A2=83=E8=BF=B7=E7=A6=BB?= Date: Fri, 28 Nov 2025 13:56:05 +0800 Subject: [PATCH 1/2] Change Logback version to 1.5.21 Updated Logback dependency version in README. --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index daca39b8..9c7650d3 100644 --- a/README.md +++ b/README.md @@ -21,11 +21,14 @@ if (logger.isDebugEnabled) logger.debug(s"Some $expensive message!") 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.2.10" +libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.5.21" ``` 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. + + ## Getting Scala Logging Scala Logging is published to Sonatype OSS and Maven Central: From ccbc64e61a44c067a0d9d9d5e15b4d91550bdd2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=A2=A6=E5=A2=83=E8=BF=B7=E7=A6=BB?= Date: Fri, 28 Nov 2025 13:59:32 +0800 Subject: [PATCH 2/2] Update scala-logging dependency version in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9c7650d3..29c52f87 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ Scala Logging is published to Sonatype OSS and Maven Central: sbt users may add this to their `build.sbt`: ```scala -libraryDependencies += "com.typesafe.scala-logging" %% "scala-logging" % "3.9.4" +libraryDependencies += "com.typesafe.scala-logging" %% "scala-logging" % "4.0.0-RC1" ``` ## Using Scala Logging