From 054965bed7b32e7d969904eed6aa3ac72b667dd6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 19 Apr 2024 21:57:26 +0200 Subject: [PATCH] Update README.md (#823) * Update README.md --------- Co-authored-by: github-actions[bot] Co-authored-by: Peter Kotula --- README.md | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 6d02814e..48983c48 100644 --- a/README.md +++ b/README.md @@ -28,13 +28,12 @@ In order to use this library, we need to add the following line in our `build.sb ```scala // ZIO Logging backends -libraryDependencies += "dev.zio" %% "zio-logging" % "2.2.1" +libraryDependencies += "dev.zio" %% "zio-logging" % "2.2.2" ``` The main module contains the following features: * [console loggers](docs/console-logger.md) * [file loggers](docs/file-logger.md) -* [reconfigurable logger](docs/reconfigurable-logger.md) * [log metrics](docs/metrics.md) @@ -44,10 +43,10 @@ Other modules: ```scala // SLF4j v1 integration - libraryDependencies += "dev.zio" %% "zio-logging-slf4j" % "2.2.1" + libraryDependencies += "dev.zio" %% "zio-logging-slf4j" % "2.2.2" // SLF4j v2 integration - libraryDependencies += "dev.zio" %% "zio-logging-slf4j2" % "2.2.1" + libraryDependencies += "dev.zio" %% "zio-logging-slf4j2" % "2.2.2" ``` When to use this module: you are already using SLF4J logger in some other project, and you like to have same log outputs. See SLF4J [v2](docs/slf4j2.md) or [v1](docs/slf4j1.md) section for more details. @@ -57,10 +56,10 @@ Other modules: ```scala // Using ZIO Logging for SLF4j v1 loggers, usually third-party non-ZIO libraries - libraryDependencies += "dev.zio" %% "zio-logging-slf4j-bridge" % "2.2.1" + libraryDependencies += "dev.zio" %% "zio-logging-slf4j-bridge" % "2.2.2" // Using ZIO Logging for SLF4j v2 loggers, usually third-party non-ZIO libraries - libraryDependencies += "dev.zio" %% "zio-logging-slf4j2-bridge" % "2.2.1" + libraryDependencies += "dev.zio" %% "zio-logging-slf4j2-bridge" % "2.2.2" ``` When to use this module: you want to use some zio-logger implementation, but also you are using some java library which using SLF4J interface for logging. @@ -71,7 +70,7 @@ Other modules: ```scala // JPL integration - libraryDependencies += "dev.zio" %% "zio-logging-jpl" % "2.2.1" + libraryDependencies += "dev.zio" %% "zio-logging-jpl" % "2.2.2" ``` When to use this module: you are already using Java Platform/System Logger in some other project, and you like to have same log outputs.