Formatting

This commit is contained in:
Thorsten Sommer 2025-05-29 15:09:53 +02:00
parent 615730d052
commit ca8b3a1d00
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -58,6 +58,7 @@ public static partial class Pandoc
{ {
if (showMessages) if (showMessages)
await MessageBus.INSTANCE.SendError(new (Icons.Material.Filled.Help, "The pandoc process could not be started.")); await MessageBus.INSTANCE.SendError(new (Icons.Material.Filled.Help, "The pandoc process could not be started."));
LOG.LogInformation("The pandoc process was not started, it was null"); LOG.LogInformation("The pandoc process was not started, it was null");
return false; return false;
} }
@ -68,6 +69,7 @@ public static partial class Pandoc
{ {
if (showMessages) if (showMessages)
await MessageBus.INSTANCE.SendError(new (Icons.Material.Filled.Error, $"The pandoc process exited unexpectedly.")); await MessageBus.INSTANCE.SendError(new (Icons.Material.Filled.Error, $"The pandoc process exited unexpectedly."));
LOG.LogError("The pandoc process was exited with code {ProcessExitCode}", process.ExitCode); LOG.LogError("The pandoc process was exited with code {ProcessExitCode}", process.ExitCode);
return false; return false;
} }
@ -77,6 +79,7 @@ public static partial class Pandoc
{ {
if (showMessages) if (showMessages)
await MessageBus.INSTANCE.SendError(new (Icons.Material.Filled.Terminal, $"pandoc --version returned an invalid format.")); await MessageBus.INSTANCE.SendError(new (Icons.Material.Filled.Terminal, $"pandoc --version returned an invalid format."));
LOG.LogError("pandoc --version returned an invalid format:\n {Output}", output); LOG.LogError("pandoc --version returned an invalid format:\n {Output}", output);
return false; return false;
} }
@ -87,11 +90,13 @@ public static partial class Pandoc
{ {
if (showMessages) if (showMessages)
await MessageBus.INSTANCE.SendSuccess(new(Icons.Material.Filled.CheckCircle, $"Pandoc {installedVersion.ToString()} is installed.")); await MessageBus.INSTANCE.SendSuccess(new(Icons.Material.Filled.CheckCircle, $"Pandoc {installedVersion.ToString()} is installed."));
return true; return true;
} }
if (showMessages) if (showMessages)
await MessageBus.INSTANCE.SendError(new (Icons.Material.Filled.Build, $"Pandoc {installedVersion.ToString()} is installed, but it doesn't match the required version ({MINIMUM_REQUIRED_VERSION.ToString()}).")); await MessageBus.INSTANCE.SendError(new (Icons.Material.Filled.Build, $"Pandoc {installedVersion.ToString()} is installed, but it doesn't match the required version ({MINIMUM_REQUIRED_VERSION.ToString()})."));
LOG.LogInformation("Pandoc {Installed} is installed, but it does not match the required version ({Requirement})", installedVersion.ToString(), MINIMUM_REQUIRED_VERSION.ToString()); LOG.LogInformation("Pandoc {Installed} is installed, but it does not match the required version ({Requirement})", installedVersion.ToString(), MINIMUM_REQUIRED_VERSION.ToString());
return false; return false;
@ -100,7 +105,8 @@ public static partial class Pandoc
{ {
if (showMessages) if (showMessages)
await MessageBus.INSTANCE.SendError(new (@Icons.Material.Filled.AppsOutage, "Pandoc is not installed.")); await MessageBus.INSTANCE.SendError(new (@Icons.Material.Filled.AppsOutage, "Pandoc is not installed."));
LOG.LogError("Pandoc is not installed and threw an exception:\n {Message}", e.Message);
LOG.LogError("Pandoc is not installed and threw an exception: {Message}", e.Message);
return false; return false;
} }
} }
@ -147,10 +153,11 @@ public static partial class Pandoc
var response = await client.GetAsync(uri); var response = await client.GetAsync(uri);
if (!response.IsSuccessStatusCode) if (!response.IsSuccessStatusCode)
{ {
await MessageBus.INSTANCE.SendError(new (Icons.Material.Filled.Error, $"Pandoc was not installed successfully, because the download archive was not found.")); await MessageBus.INSTANCE.SendError(new (Icons.Material.Filled.Error, "Pandoc was not installed successfully, because the download archive was not found."));
LOG.LogError("Pandoc was not installed, the release archive was not found (Status Code {StatusCode}):\n{Uri}\n{Message}", response.StatusCode, uri, response.RequestMessage); LOG.LogError("Pandoc was not installed, the release archive was not found (Status Code {StatusCode}):\n{Uri}\n{Message}", response.StatusCode, uri, response.RequestMessage);
return; return;
} }
var fileBytes = await response.Content.ReadAsByteArrayAsync(); var fileBytes = await response.Content.ReadAsByteArrayAsync();
if (uri.Contains(".zip")) if (uri.Contains(".zip"))