Refine log messages

This commit is contained in:
2026-02-25 09:15:02 +09:00
parent af8cfa31e5
commit 3c754dc196
+3 -3
View File
@@ -747,12 +747,12 @@ class MainViewModel : BaseViewModel, IFontResolver, ICanCheckShutdown
Document = pdfDoc, Document = pdfDoc,
WorkingDirectory = folderPath WorkingDirectory = folderPath
}; };
LogInfo("Rendering document..."); LogInfo("Rendering document to PDF file...");
pdfRenderer.RenderDocument(); pdfRenderer.RenderDocument();
string outputPDFFileName = Path.Join(folderPath, outputFileName); string outputPDFFileName = Path.Join(folderPath, outputFileName);
LogInfo("Saving document to disk..."); LogInfo("Saving PDF document to disk...");
pdfRenderer.PdfDocument.Save(outputPDFFileName); pdfRenderer.PdfDocument.Save(outputPDFFileName);
LogInfo("Saved PDF output to: " + outputPDFFileName); LogInfo("Finished saving PDF output to: " + outputPDFFileName);
await CreateAndSaveReportObjectAfterReportCreation(); await CreateAndSaveReportObjectAfterReportCreation();
OpenFolderForFileInFileViewer(outputPDFFileName); OpenFolderForFileInFileViewer(outputPDFFileName);
IsCreatingPDF = false; IsCreatingPDF = false;