File tree Expand file tree Collapse file tree 1 file changed +17
-5
lines changed
composeApp/src/commonMain/kotlin/com/developersbreach/kotlindictionarymultiplatform Expand file tree Collapse file tree 1 file changed +17
-5
lines changed Original file line number Diff line number Diff line change @@ -2,21 +2,33 @@ package com.developersbreach.kotlindictionarymultiplatform
22
33import co.touchlab.kermit.Logger
44
5-
65object 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}
You can’t perform that action at this time.
0 commit comments