From 3c754dc196d2b788246b190307f3b9695397384b Mon Sep 17 00:00:00 2001 From: Michael Babienco Date: Wed, 25 Feb 2026 09:15:02 +0900 Subject: [PATCH] Refine log messages --- src/ViewModels/MainViewModel.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ViewModels/MainViewModel.cs b/src/ViewModels/MainViewModel.cs index 25533c7..19f45f0 100644 --- a/src/ViewModels/MainViewModel.cs +++ b/src/ViewModels/MainViewModel.cs @@ -747,12 +747,12 @@ class MainViewModel : BaseViewModel, IFontResolver, ICanCheckShutdown Document = pdfDoc, WorkingDirectory = folderPath }; - LogInfo("Rendering document..."); + LogInfo("Rendering document to PDF file..."); pdfRenderer.RenderDocument(); string outputPDFFileName = Path.Join(folderPath, outputFileName); - LogInfo("Saving document to disk..."); + LogInfo("Saving PDF document to disk..."); pdfRenderer.PdfDocument.Save(outputPDFFileName); - LogInfo("Saved PDF output to: " + outputPDFFileName); + LogInfo("Finished saving PDF output to: " + outputPDFFileName); await CreateAndSaveReportObjectAfterReportCreation(); OpenFolderForFileInFileViewer(outputPDFFileName); IsCreatingPDF = false;