From a5fac2f6c7c1af3397b8aae410f6042b19bdf6c0 Mon Sep 17 00:00:00 2001 From: Michael Babienco Date: Sat, 3 Jan 2026 22:29:30 +0900 Subject: [PATCH] Remove unneeded logs --- ViewModels/MainViewModel.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/ViewModels/MainViewModel.cs b/ViewModels/MainViewModel.cs index d6d4940..ad7ddeb 100644 --- a/ViewModels/MainViewModel.cs +++ b/ViewModels/MainViewModel.cs @@ -104,12 +104,10 @@ class MainViewModel : BaseViewModel, IFontResolver var outputFileName = "MyReceipts.pdf"; var folderName = new DirectoryInfo(folderPath).Name; const int imageWidth = 425; - LogInfo("Folder name is " + folderName); if (folderName.Contains('-')) { // see if year/month format var parts = folderName.Split('-'); - LogInfo(string.Format("{0}, {1}", parts[0], parts[1])); if (parts[0].Length == 4 && parts[1].Length <= 2 && int.TryParse(parts[0], out int year) && int.TryParse(parts[1], out int month))