Skip to content

Commit f84096f

Browse files
committed
Run ktlint format
1 parent 47d2cb1 commit f84096f

File tree

1 file changed

+17
-5
lines changed
  • composeApp/src/commonMain/kotlin/com/developersbreach/kotlindictionarymultiplatform

1 file changed

+17
-5
lines changed

composeApp/src/commonMain/kotlin/com/developersbreach/kotlindictionarymultiplatform/Log.kt

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,33 @@ package com.developersbreach.kotlindictionarymultiplatform
22

33
import co.touchlab.kermit.Logger
44

5-
65
object Log {
7-
fun d(tag: String, message: String) {
6+
fun d(
7+
tag: String,
8+
message: String,
9+
) {
810
Logger.d(message, tag = tag)
911
}
1012

11-
fun i(tag: String, message: String) {
13+
fun i(
14+
tag: String,
15+
message: String,
16+
) {
1217
Logger.i(message, tag = tag)
1318
}
1419

15-
fun w(tag: String, message: String) {
20+
fun w(
21+
tag: String,
22+
message: String,
23+
) {
1624
Logger.w(message, tag = tag)
1725
}
1826

19-
fun e(tag: String, message: String, throwable: Throwable? = null) {
27+
fun e(
28+
tag: String,
29+
message: String,
30+
throwable: Throwable? = null,
31+
) {
2032
Logger.e(message, throwable, tag = tag)
2133
}
2234
}

0 commit comments

Comments
 (0)