Skip to content

Commit

Permalink
mobile: Remove duplicate setLogger call (envoyproxy#34870)
Browse files Browse the repository at this point in the history
Risk Level: low
Testing: test apps
Docs Changes: n/a
Release Notes: n/a
Platform Specific Features: n/a

Signed-off-by: Fredy Wijaya <[email protected]>
  • Loading branch information
fredyw authored Jun 25, 2024
1 parent 9db40df commit 38583a2
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion mobile/examples/kotlin/hello_world/MainActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ class MainActivity : Activity() {
Log.d(TAG, "Event emitted: ${entry.key}, ${entry.value}")
}
})
.setLogger { _, message -> Log.d(TAG, message) }
.build()

recyclerView = findViewById(R.id.recycler_view) as RecyclerView
Expand Down
1 change: 0 additions & 1 deletion mobile/test/kotlin/apps/baseline/MainActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ class MainActivity : Activity() {
Log.d(TAG, "Event emitted: ${entry.key}, ${entry.value}")
}
})
.setLogger { _, message -> Log.d(TAG, message) }
.build()

recyclerView = findViewById<RecyclerView>(R.id.recycler_view)!!
Expand Down
1 change: 0 additions & 1 deletion mobile/test/kotlin/apps/experimental/MainActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ class MainActivity : Activity() {
Log.d(TAG, "Event emitted: ${entry.key}, ${entry.value}")
}
})
.setLogger { _, message -> Log.d(TAG, message) }
.build()

recyclerView = findViewById<RecyclerView>(R.id.recycler_view)!!
Expand Down

0 comments on commit 38583a2

Please sign in to comment.