We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcb953b commit d583033Copy full SHA for d583033
app/src/main/java/pseudoankit/droid/tasky/MainActivity.kt
@@ -52,8 +52,6 @@ internal class MainActivity : ComponentActivity() {
52
splashScreen.show()
53
super.onCreate(savedInstanceState)
54
55
- TaskyLogger.info("intent = $intent")
56
-
57
window.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
58
59
setContent {
core/core/src/main/java/pseudoankit/droid/core/logger/TaskyLogger.kt
@@ -14,3 +14,7 @@ object TaskyLogger {
14
Log.e("$INTERNAL_TAG $tag", value.joinToString(", "))
15
}
16
17
+
18
+fun logInfo(vararg value: Any, tag: String = "") {
19
+ TaskyLogger.info(*value, tag)
20
+}
0 commit comments