From d77f9bab8c2b30c388e3dfd27def85b265bd40b8 Mon Sep 17 00:00:00 2001 From: Michael Babienco Date: Tue, 24 Feb 2026 21:03:14 +0900 Subject: [PATCH] Don't show file not added for project json file --- src/ViewModels/MainViewModel.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/ViewModels/MainViewModel.cs b/src/ViewModels/MainViewModel.cs index 938a460..075aa03 100644 --- a/src/ViewModels/MainViewModel.cs +++ b/src/ViewModels/MainViewModel.cs @@ -346,7 +346,10 @@ class MainViewModel : BaseViewModel, IFontResolver, ICanCheckShutdown } if (!didMatch) { - LogInfo("File {0} did not match allowed file extension types, so it was not added.", filePath); + if (!filePath.EndsWith(GetReportSavedDataFileName())) + { + LogInfo("File {0} did not match allowed file extension types, so it was not added.", filePath); + } } else {