ILogWriter Interface
Represents a type used to perform logging.
Namespace: ADCS.CertMod.ManagedAssembly: ADCS.CertMod.Managed (in ADCS.CertMod.Managed.dll) Version: 3.0.0+d2bb03ea44678b01baee06872c78fd0a30d7e09e
public interface ILogWriter
Public Interface ILogWriter
public interface class ILogWriter
type ILogWriter = interface end
| LogLevel |
Gets or sets the current logging level.
|
| Log(LogLevel, Exception, String) |
Formats and writes a log message at the specified log level.
|
| Log(LogLevel, String, Object) |
Formats and writes a log message at the specified log level.
|
| LogCritical(Exception, String) |
Formats and writes a critical log message.
|
| LogCritical(String, Object) |
Formats and writes a critical log message.
|
| LogDebug(Exception, String) |
Formats and writes a debug log message.
|
| LogDebug(String, Object) |
Formats and writes a debug log message.
|
| LogError(Exception, String) |
Formats and writes an error log message.
|
| LogError(String, Object) |
Formats and writes an error log message.
|
| LogInformation(Exception, String) |
Formats and writes an informational log message.
|
| LogInformation(String, Object) |
Formats and writes an informational log message.
|
| LogTrace(Exception, String) |
Formats and writes a trace log message.
|
| LogTrace(String, Object) |
Formats and writes a trace log message.
|
| LogWarning(Exception, String) |
Formats and writes a warning log message.
|
| LogWarning(String, Object) |
Formats and writes a warning log message.
|