From 450c7b187fd58a274f207a9ca8a2d6edfed492b6 Mon Sep 17 00:00:00 2001 From: Neeraj Gupta <254676+ua741@users.noreply.github.com> Date: Sat, 21 Jun 2025 09:46:11 +0530 Subject: [PATCH] Clean up logs --- mobile/lib/ui/tabs/home_widget.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mobile/lib/ui/tabs/home_widget.dart b/mobile/lib/ui/tabs/home_widget.dart index a2e8502678..ce37fc501a 100644 --- a/mobile/lib/ui/tabs/home_widget.dart +++ b/mobile/lib/ui/tabs/home_widget.dart @@ -827,7 +827,7 @@ class _HomeWidgetState extends State { // Parse the link and warn the user, if it is not correct, // but keep in mind it could be `null`. if (initialLink != null) { - _logger.info("Initial link received: " + initialLink.toString()); + _logger.info("Initial link received: host ${initialLink.host}"); _getCredentials(context, initialLink); return true; } else { @@ -842,7 +842,7 @@ class _HomeWidgetState extends State { // Attach a listener to the stream appLinks.uriLinkStream.listen( (link) { - _logger.info("Link received: " + link.toString()); + _logger.info("Link received: host ${link.host}"); _getCredentials(context, link); }, onError: (err) {