Skip to content

Commit d583033

Browse files
committed
removed extra log, added utility
1 parent dcb953b commit d583033

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

app/src/main/java/pseudoankit/droid/tasky/MainActivity.kt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,6 @@ internal class MainActivity : ComponentActivity() {
5252
splashScreen.show()
5353
super.onCreate(savedInstanceState)
5454

55-
TaskyLogger.info("intent = $intent")
56-
5755
window.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
5856

5957
setContent {

core/core/src/main/java/pseudoankit/droid/core/logger/TaskyLogger.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,7 @@ object TaskyLogger {
1414
Log.e("$INTERNAL_TAG $tag", value.joinToString(", "))
1515
}
1616
}
17+
18+
fun logInfo(vararg value: Any, tag: String = "") {
19+
TaskyLogger.info(*value, tag)
20+
}

0 commit comments

Comments
 (0)