Rename Logger.Debug to Logger.LogDebug across codebase

Renamed the Logger.Debug method to Logger.LogDebug for improved clarity and consistency. Updated all usages in PDFBurner, ReportCreator, FinalizeDocumentJob, TempFiles, and Logging.cs. No changes to logging logic or other log levels.
This commit is contained in:
2026-02-25 13:36:50 +01:00
parent 3b06f3fdac
commit cbc983e070
5 changed files with 43 additions and 41 deletions

View File

@@ -185,7 +185,7 @@ public class PDFBurner : BaseClass
foreach (var annotation in annotationData.annotations)
{
Logger.Debug("Adding AnnotationID: " + annotation.id);
Logger.LogDebug("Adding AnnotationID: " + annotation.id);
switch (annotation.type)
{