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) {