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: 1.2.0.0 (1.2.0.0)
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