From b80ebbac8c5aeb1fba534b9a221a781fbec79a5a Mon Sep 17 00:00:00 2001 From: Corentin LEMAIRE Date: Sun, 4 Jun 2023 11:02:40 +0200 Subject: [PATCH] Fix unused ex variable warning --- Sources/Linaris/LocalFilesPage.xaml.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Sources/Linaris/LocalFilesPage.xaml.cs b/Sources/Linaris/LocalFilesPage.xaml.cs index 67a754d..291494a 100644 --- a/Sources/Linaris/LocalFilesPage.xaml.cs +++ b/Sources/Linaris/LocalFilesPage.xaml.cs @@ -1,6 +1,7 @@ using CommunityToolkit.Maui.Views; using Model; using System.Collections.ObjectModel; +using System.Diagnostics; namespace Linaris; @@ -82,6 +83,7 @@ public partial class LocalFilesPage : ContentPage } catch (Exception ex) { + Debug.Print(ex.ToString()); return; }