Skip to content

Commit 31ee2f5

Browse files
authored
Update README.md
1 parent 2d745eb commit 31ee2f5

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -50,23 +50,28 @@ An `Android` example project with kotlin logging can be found in [kotlin-logging
5050

5151
**Important note:** kotlin-logging depends on slf4j-api. In runtime, it is also required to depend on a logging implementation. More details in [how-to-configure-slf4j](http://saltnlight5.blogspot.co.il/2013/08/how-to-configure-slf4j-with-different.html). And an excelent detailed explanation in [a-guide-to-logging-in-java](https://www.marcobehler.com/guides/a-guide-to-logging-in-java).
5252

53+
**Multiplatform:** See the section below.
5354
### Maven
5455
```xml
5556
<dependency>
5657
<groupId>io.github.microutils</groupId>
5758
<artifactId>kotlin-logging</artifactId>
58-
<version>1.6.20</version>
59+
<version>1.6.22</version>
5960
</dependency>
6061
```
6162
See full example in [kotlin-logging-example-maven](https://github.com/MicroUtils/kotlin-logging-example-maven).
6263

6364
### Gradle
6465
```Groovy
65-
compile 'io.github.microutils:kotlin-logging:1.6.20'
66+
compile 'io.github.microutils:kotlin-logging:1.6.22'
6667
```
6768

6869
Or alternatively, download jar from [github](https://github.com/MicroUtils/kotlin-logging/releases/latest) or [bintray](https://dl.bintray.com/microutils/kotlin-logging/io/github/microutils/kotlin-logging/) or [maven-central](http://repo1.maven.org/maven2/io/github/microutils/kotlin-logging/).
6970

71+
## Multiplatform
72+
73+
An experimental common & js support is available.
74+
More info on [wiki](https://github.com/MicroUtils/kotlin-logging/wiki/Multiplatform-support) and issue [#21](https://github.com/MicroUtils/kotlin-logging/issues/21).
7075

7176
## Overview
7277

@@ -75,11 +80,6 @@ After seeing many questions like [Idiomatic way of logging in Kotlin](http://sta
7580
- A straight forward way to log messages with lazy-evaluated string using lambda expression `{}`.
7681
- All previous slf4j implementation still can be used.
7782

78-
## Multiplatform
79-
80-
An experimental common & js support is available.
81-
More info on [wiki](https://github.com/MicroUtils/kotlin-logging/wiki/Multiplatform-support) and issue [#21](https://github.com/MicroUtils/kotlin-logging/issues/21).
82-
8383
## Who is using it
8484

8585
- https://www.jetbrains.com/youtrack/ (https://www.jetbrains.com/help/youtrack/standalone/Third-Party-Software-Used-by-YouTrack.html)

0 commit comments

Comments
 (0)