Don't show file not added for project json file

This commit is contained in:
2026-02-24 21:03:14 +09:00
parent d508222901
commit d77f9bab8c
+4 -1
View File
@@ -346,7 +346,10 @@ class MainViewModel : BaseViewModel, IFontResolver, ICanCheckShutdown
} }
if (!didMatch) 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 else
{ {