Interface ILogger
- Namespace
- FellowOakDicom.Log
- Assembly
- fo-dicom.core.dll
[Obsolete("Fellow Oak DICOM now supports Microsoft.Extensions.Logging")]
public interface ILogger
- Extension Methods
Methods
Debug(string, params object[])
Log a debug message to the logger.
void Debug(string msg, params object[] args)
Parameters
Error(string, params object[])
Log an error message to the logger.
void Error(string msg, params object[] args)
Parameters
Fatal(string, params object[])
Log a fatal error message to the logger.
void Fatal(string msg, params object[] args)
Parameters
Info(string, params object[])
Log an informational message to the logger.
void Info(string msg, params object[] args)
Parameters
Log(LogLevel, string, params object[])
Log a message to the logger.
void Log(LogLevel level, string msg, params object[] args)
Parameters
level
LogLevelLog level.
msg
stringLog message (format string).
args
object[]Log message arguments.
Warn(string, params object[])
Log a warning message to the logger.
void Warn(string msg, params object[] args)