You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,23 +50,28 @@ An `Android` example project with kotlin logging can be found in [kotlin-logging
50
50
51
51
**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).
52
52
53
+
**Multiplatform:** See the section below.
53
54
### Maven
54
55
```xml
55
56
<dependency>
56
57
<groupId>io.github.microutils</groupId>
57
58
<artifactId>kotlin-logging</artifactId>
58
-
<version>1.6.20</version>
59
+
<version>1.6.22</version>
59
60
</dependency>
60
61
```
61
62
See full example in [kotlin-logging-example-maven](https://github.com/MicroUtils/kotlin-logging-example-maven).
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/).
69
70
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).
70
75
71
76
## Overview
72
77
@@ -75,11 +80,6 @@ After seeing many questions like [Idiomatic way of logging in Kotlin](http://sta
75
80
- A straight forward way to log messages with lazy-evaluated string using lambda expression `{}`.
76
81
- All previous slf4j implementation still can be used.
77
82
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).
0 commit comments