From a4c71327561146aa2d10cb7c3ee712db53dceb6a Mon Sep 17 00:00:00 2001 From: Elias Fierke Date: Thu, 4 Jun 2026 08:42:34 +0200 Subject: [PATCH] [chore:] some log changes --- MainWindow.axaml.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/MainWindow.axaml.cs b/MainWindow.axaml.cs index 8b65ab0..fa49f68 100644 --- a/MainWindow.axaml.cs +++ b/MainWindow.axaml.cs @@ -862,13 +862,13 @@ public partial class MainWindow : Window var filePath = await saveDialog.ShowAsync(this); - Console.WriteLine($"RAW: {filePath}"); + Logger.Log($"RAW: {filePath}"); if (!string.IsNullOrWhiteSpace(filePath)) { filePath = PathUtilities.NormalizeFileSystemPath(filePath); - Console.WriteLine($"PATH: {filePath}"); + Logger.Log($"PATH: {filePath}"); var builder = new PdfBuilder(Settings._instance.pdfExport); @@ -878,7 +878,7 @@ public partial class MainWindow : Window filePath ); - Console.WriteLine("PDF OK"); + Logger.Log("PDF OK"); } }