Update logger name from 'PandocService' to 'Pandoc'

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

View File

@ -19,7 +19,7 @@ public static partial class Pandoc
private const string DOWNLOAD_URL = "https://github.com/jgm/pandoc/releases/download"; private const string DOWNLOAD_URL = "https://github.com/jgm/pandoc/releases/download";
private const string LATEST_URL = "https://github.com/jgm/pandoc/releases/latest"; private const string LATEST_URL = "https://github.com/jgm/pandoc/releases/latest";
private static readonly ILogger LOG = Program.LOGGER_FACTORY.CreateLogger("PandocService"); private static readonly ILogger LOG = Program.LOGGER_FACTORY.CreateLogger("Pandoc");
private static readonly Version MINIMUM_REQUIRED_VERSION = new (3, 7); private static readonly Version MINIMUM_REQUIRED_VERSION = new (3, 7);
private static readonly Version FALLBACK_VERSION = new (3, 7, 0, 2); private static readonly Version FALLBACK_VERSION = new (3, 7, 0, 2);