Logger
Namespace: DataFlow.Utilities
Provides functionality for logging messages.
public static class Logger
Methods
Initialize(LogMethod)
Initializes the Logger using the provided logging method.
public static void Initialize(LogMethod logMethod)
Parameters
logMethod LogMethod
The method used to log messages.
Log(LogLevel, String, String)
Logs a message using the provided LogLevel.
public static void Log(LogLevel logLevel, string message, string callerMemberName)
Parameters
logLevel LogLevel
The message log level.
message String
The message to log.
callerMemberName String
The name of the caller.