[chore:] some log changes

This commit is contained in:
2026-06-04 08:42:34 +02:00
parent c32cd44184
commit a4c7132756
+3 -3
View File
@@ -862,13 +862,13 @@ public partial class MainWindow : Window
var filePath = await saveDialog.ShowAsync(this); var filePath = await saveDialog.ShowAsync(this);
Console.WriteLine($"RAW: {filePath}"); Logger.Log($"RAW: {filePath}");
if (!string.IsNullOrWhiteSpace(filePath)) if (!string.IsNullOrWhiteSpace(filePath))
{ {
filePath = PathUtilities.NormalizeFileSystemPath(filePath); filePath = PathUtilities.NormalizeFileSystemPath(filePath);
Console.WriteLine($"PATH: {filePath}"); Logger.Log($"PATH: {filePath}");
var builder = new PdfBuilder(Settings._instance.pdfExport); var builder = new PdfBuilder(Settings._instance.pdfExport);
@@ -878,7 +878,7 @@ public partial class MainWindow : Window
filePath filePath
); );
Console.WriteLine("PDF OK"); Logger.Log("PDF OK");
} }
} }