Skip to content

Commit 8d6bc09

Browse files
committed
Don't print navigation arguments to log
1 parent 470463d commit 8d6bc09

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/src/main/kotlin/org/equeim/tremotesf/ui/NavigationActivity.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,8 +261,8 @@ class NavigationActivity : AppCompatActivity(), NavControllerProvider {
261261
class NavHostFragment : NavHostFragment() {
262262
override fun onCreateNavHostController(navHostController: NavHostController) {
263263
super.onCreateNavHostController(navHostController)
264-
navHostController.addOnDestinationChangedListener { _, destination, arguments ->
265-
Timber.i("Destination changed: destination = $destination, arguments = $arguments")
264+
navHostController.addOnDestinationChangedListener { _, destination, _ ->
265+
Timber.i("Destination changed: destination = $destination")
266266
}
267267
}
268268

0 commit comments

Comments
 (0)