Skip to content

Commit a9768b2

Browse files
committed
fix: use Logger instead of Log
1 parent d19817c commit a9768b2

File tree

1 file changed

+3
-1
lines changed
  • android/src/main/java/com/reactnativekeyboardcontroller/views/background

1 file changed

+3
-1
lines changed

android/src/main/java/com/reactnativekeyboardcontroller/views/background/Skins.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ import com.facebook.react.uimanager.ThemedReactContext
99
import com.reactnativekeyboardcontroller.R
1010
import com.reactnativekeyboardcontroller.extensions.currentImePackage
1111
import com.reactnativekeyboardcontroller.extensions.isSystemDarkMode
12+
import com.reactnativekeyboardcontroller.log.Logger
1213

14+
private const val TAG = "Skins"
1315
private const val MAX_RGB_VALUE = 255
1416

1517
object ImePackages {
@@ -76,7 +78,7 @@ fun ThemedReactContext.getInputMethodColor(): Int {
7678
val imePackage = currentImePackage()
7779
val isDark = isSystemDarkMode()
7880

79-
Log.i("Skins", "Current IME: $imePackage")
81+
Logger.i(TAG, "Current IME: $imePackage")
8082

8183
val (lightColorRes, darkColorRes) =
8284
imeColorMap[imePackage]

0 commit comments

Comments
 (0)