Fixed exception handling

This commit is contained in:
Thorsten Sommer 2025-05-29 15:10:15 +02:00
parent ca8b3a1d00
commit 8adc138427
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -186,7 +186,7 @@ public static partial class Pandoc
} }
catch (Exception ex) catch (Exception ex)
{ {
Console.WriteLine($"Fehler: {ex.Message}"); LOG.LogError(ex, "An error occurred while installing Pandoc.");
} }
} }