Remove obsolete Debug property from WorkerOptions

The Debug property, previously marked as obsolete in WorkerOptions, has been removed. Debugging should now be managed through ILogger-based logging instead of this flag.
This commit is contained in:
2026-04-01 11:23:29 +02:00
parent ab67b3fba2
commit 53ff48dc3c

View File

@@ -7,9 +7,6 @@ public class WorkerOptions
{
public string GdPictureLicenseKey { get; set; } = null!;
[Obsolete("Use ILogger.")]
public bool Debug { get; set; }
public PDFBurnerOptions PdfBurner { get; set; } = new();
public record PDFBurnerOptions