LogWriterLog(LogLevel, String, Object) Method

Formats and writes a log message at the specified log level.

Definition

Namespace: ADCS.CertMod.Managed
Assembly: ADCS.CertMod.Managed (in ADCS.CertMod.Managed.dll) Version: 3.0.0+d2bb03ea44678b01baee06872c78fd0a30d7e09e
C#
public void Log(
	LogLevel logLevel,
	string message,
	params Object[]? args
)

Parameters

logLevel  LogLevel
Log level to write log message into.
message  String
Format string of the log message in message template format. Example:
C#
User {User} logged in from {Address}"
args  Object
An object array that contains zero or more objects to format.

Implements

ILogWriterLog(LogLevel, String, Object)

See Also