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:
@@ -11,7 +11,9 @@ public class LogConfig
|
||||
|
||||
public class Logger
|
||||
{
|
||||
public void Debug(string message, params object?[] args) => Write("DEBUG", message, args);
|
||||
ILogger<LogConfig> logger;
|
||||
|
||||
public void LogDebug(string message, params object?[] args) => Write("DEBUG", message, args);
|
||||
public void Info(string message, params object?[] args) => Write("INFO", message, args);
|
||||
public void Warn(string message, params object?[] args) => Write("WARN", message, args);
|
||||
public void Warn(Exception exception, string message, params object?[] args) => Write("WARN", message + " " + exception.Message, args);
|
||||
|
||||
Reference in New Issue
Block a user