From 5f99d0e4eb74ce555a544fed7e12375b29efb7dd Mon Sep 17 00:00:00 2001 From: Michael Babienco Date: Mon, 2 Mar 2026 14:33:36 +0900 Subject: [PATCH] Fix log message for converted file paths --- src/ViewModels/MainViewModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ViewModels/MainViewModel.cs b/src/ViewModels/MainViewModel.cs index cbf97f1..91c7cca 100644 --- a/src/ViewModels/MainViewModel.cs +++ b/src/ViewModels/MainViewModel.cs @@ -706,7 +706,7 @@ class MainViewModel : BaseViewModel, IFontResolver, ICanCheckShutdown { await mImage.WriteAsync(convertedOutputPath); filePath = convertedOutputPath; - LogInfo(string.Format("Saved adjusted image to JPEG; fileName is now {0}", file.FilePath)); + LogInfo(string.Format("Saved adjusted image to JPEG; file path is now {0}", filePath)); } } var paragraph = section.AddParagraph();