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:
@@ -42,7 +42,7 @@ public class TempFiles : BaseClass
|
||||
{
|
||||
foreach (var fileItem in Directory.GetFiles(TempPath))
|
||||
{
|
||||
Logger.Debug("Deleting tempPath-file: {0} ...", fileItem);
|
||||
Logger.LogDebug("Deleting tempPath-file: {0} ...", fileItem);
|
||||
File.Delete(fileItem);
|
||||
}
|
||||
|
||||
@@ -59,7 +59,7 @@ public class TempFiles : BaseClass
|
||||
{
|
||||
try
|
||||
{
|
||||
Logger.Debug("Deleting tempPath-Data: {0} ...", TempPath);
|
||||
Logger.LogDebug("Deleting tempPath-Data: {0} ...", TempPath);
|
||||
Directory.Delete(TempPath, true);
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user