Skip to content

Commit e9c6ec5

Browse files
authored
update links (#268)
1 parent e8463ad commit e9c6ec5

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
# <img height="30" width="30" alt="kotlin-logging" src="https://raw.githubusercontent.com/MicroUtils/kotlin-logging/master/misc/images/kotlin-logging.png"> [kotlin-logging](https://github.com/MicroUtils/kotlin-logging) [![CI](https://github.com/MicroUtils/kotlin-logging/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/MicroUtils/kotlin-logging/actions/workflows/ci.yml) [![Slack channel](https://img.shields.io/badge/Chat-Slack-blue.svg)](https://kotlinlang.slack.com/messages/kotlin-logging/) [![Maven Central](https://img.shields.io/maven-central/v/io.github.microutils/kotlin-logging.svg)](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22io.github.microutils%22) [![Apache License V.2](https://img.shields.io/badge/license-Apache%20V.2-blue.svg)](https://github.com/MicroUtils/kotlin-logging/blob/master/LICENSE)
1+
# <img height="30" width="30" alt="kotlin-logging" src="https://raw.githubusercontent.com/oshai/kotlin-logging/master/misc/images/kotlin-logging.png"> [kotlin-logging](https://github.com/oshai/kotlin-logging) [![CI](https://github.com/oshai/kotlin-logging/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/oshai/kotlin-logging/actions/workflows/ci.yml) [![Slack channel](https://img.shields.io/badge/Chat-Slack-blue.svg)](https://kotlinlang.slack.com/messages/kotlin-logging/) [![Maven Central](https://img.shields.io/maven-central/v/io.github.oshai/kotlin-logging.svg)](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22io.github.microutils%22) [![Apache License V.2](https://img.shields.io/badge/license-Apache%20V.2-blue.svg)](https://github.com/oshai/kotlin-logging/blob/master/LICENSE)
22

3-
Curious to try version 4? See https://github.com/MicroUtils/kotlin-logging/issues/264 for details.
3+
Curious to try version 4? See https://github.com/oshai/kotlin-logging/issues/264 for details.
44

55
##
66

77
Lightweight logging framework for Kotlin, written in [![Pure Kotlin](https://img.shields.io/badge/100%25-kotlin-blue.svg)](https://kotlinlang.org/).
88
A convenient and performant logging facade.
99
For jvm `kotlin-logging` is wrapping [slf4j](http://www.slf4j.org/) with Kotlin extensions.
10-
For other platforms `kotlin-logging` has various implementations. More details in the [wiki](https://github.com/MicroUtils/kotlin-logging/wiki/Multiplatform-support)
10+
For other platforms `kotlin-logging` has various implementations. More details in the [wiki](https://github.com/oshai/kotlin-logging/wiki/Multiplatform-support)
1111

1212
#### Call log methods, without checking whether the respective log level is enabled
1313
```Kotlin
@@ -51,7 +51,7 @@ class FooWithLogging {
5151
}
5252
```
5353

54-
An `Android` example project with kotlin-logging can be found in [kotlin-logging-example-android](https://github.com/MicroUtils/kotlin-logging-example-android).
54+
An `Android` example project with kotlin-logging can be found in [kotlin-logging-example-android](https://github.com/oshai/kotlin-logging-example-android).
5555

5656
## Download
5757

@@ -67,19 +67,19 @@ In short, if you just want to log statements to stdout, it's possible to add the
6767
<version>3.0.4</version>
6868
</dependency>
6969
```
70-
See the full example in [kotlin-logging-example-maven](https://github.com/MicroUtils/kotlin-logging-example-maven).
70+
See the full example in [kotlin-logging-example-maven](https://github.com/oshai/kotlin-logging-example-maven).
7171

7272
### Gradle
7373
```Groovy
7474
implementation 'io.github.microutils:kotlin-logging-jvm:3.0.4'
7575
```
7676

77-
Alternatively, download the 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/).
77+
Alternatively, download the JAR from [github](https://github.com/oshai/kotlin-logging/releases/latest) or [maven-central](https://repo1.maven.org/maven2/io/github/microutils/kotlin-logging/).
7878

7979
### Multiplatform
8080

8181
An experimental common & JS & linux-x64 support is available.
82-
More information is available on the [wiki](https://github.com/MicroUtils/kotlin-logging/wiki/Multiplatform-support) and issues [#21](https://github.com/MicroUtils/kotlin-logging/issues/21) [#45](https://github.com/MicroUtils/kotlin-logging/issues/45).
82+
More information is available on the [wiki](https://github.com/oshai/kotlin-logging/wiki/Multiplatform-support) and issues [#21](https://github.com/oshai/kotlin-logging/issues/21) [#45](https://github.com/oshai/kotlin-logging/issues/45).
8383

8484
## Overview
8585

@@ -109,15 +109,15 @@ And many more... (add your name above)
109109

110110
## Usage
111111

112-
- See [wiki](https://github.com/MicroUtils/kotlin-logging/wiki) for more examples.
112+
- See [wiki](https://github.com/oshai/kotlin-logging/wiki) for more examples.
113113

114114
It is possible to configure IntelliJ live templates. For file level logger configure the following:
115115
- Text template: `private val logger = mu.KotlinLogging.logger {}`.
116116
- Applicable in `Kotlin: top-level`.
117117

118118
## Support
119119

120-
- Open an issue here: https://github.com/MicroUtils/kotlin-logging/issues
120+
- Open an issue here: https://github.com/oshai/kotlin-logging/issues
121121
- Ask a question in StackOverflow with [kotlin-logging tag](http://stackoverflow.com/tags/kotlin-logging/info).
122122
- Chat on Slack channel: https://kotlinlang.slack.com/messages/kotlin-logging
123123
- Chat on Telegram channel: https://t.me/klogging
@@ -136,10 +136,10 @@ It is possible to configure IntelliJ live templates. For file level logger confi
136136
## Contributing
137137

138138
Any contribution is appreciated.
139-
See the contributors list in: https://github.com/MicroUtils/kotlin-logging/graphs/contributors
139+
See the contributors list in: https://github.com/oshai/kotlin-logging/graphs/contributors
140140

141-
Pull requests are welcome! See instructions in https://github.com/MicroUtils/kotlin-logging/blob/master/CONTRIBUTING.md.
141+
Pull requests are welcome! See instructions in https://github.com/oshai/kotlin-logging/blob/master/CONTRIBUTING.md.
142142

143-
[Show your ❤ with a ★](https://github.com/MicroUtils/kotlin-logging/stargazers)
143+
[Show your ❤ with a ★](https://github.com/oshai/kotlin-logging/stargazers)
144144

145145

build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ publishing {
172172
pom {
173173
name.set("kotlin-logging")
174174
description.set("kotlin-logging $version - Lightweight logging framework for Kotlin")
175-
url.set("https://github.com/MicroUtils/kotlin-logging")
175+
url.set("https://github.com/oshai/kotlin-logging")
176176
licenses {
177177
license {
178178
name.set("The Apache Software License, Version 2.0")
@@ -188,9 +188,9 @@ publishing {
188188
}
189189
}
190190
scm {
191-
connection.set("scm:git:git://github.com/MicroUtils/kotlin-logging.git")
192-
developerConnection.set("scm:git:ssh://github.com:MicroUtils/kotlin-logging.git")
193-
url.set("https://github.com/MicroUtils/kotlin-logging/tree/master")
191+
connection.set("scm:git:git://github.com/oshai/kotlin-logging.git")
192+
developerConnection.set("scm:git:ssh://github.com:oshai/kotlin-logging.git")
193+
url.set("https://github.com/oshai/kotlin-logging/tree/master")
194194
}
195195
}
196196
artifact(tasks["dokkaJar"])

0 commit comments

Comments
 (0)