Rename Logger.Warn to Logger.LogWarning throughout codebase

Replaces all usages of Logger.Warn with Logger.LogWarning for consistency with .NET logging conventions. Updates the Logger class method name and all related calls, with no changes to logic or parameters.
This commit is contained in:
2026-02-25 13:37:50 +01:00
parent b28084bf19
commit 5230076d5d
3 changed files with 14 additions and 14 deletions

View File

@@ -149,8 +149,8 @@ public class PDFBurner : BaseClass
}
catch (Exception ex)
{
Logger.Warn("Error in AddInstantJSONAnnotationToPDF - oJson: ");
Logger.Warn(json);
Logger.LogWarning("Error in AddInstantJSONAnnotationToPDF - oJson: ");
Logger.LogWarning(json);
throw new BurnAnnotationException("Adding Annotation failed", ex);
}
}