Click or drag to resize
LoggerLog Method (LoggerLevel, String, String, String, String, Object)
Log a message with parameters using a resource file.

Namespace: Imsl
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public void Log(
	LoggerLevel logLevel,
	string className,
	string methodName,
	string name,
	string key,
	Object[] arg
)

Parameters

logLevel
Type: ImslLoggerLevel
The Logger.Level of the message. If the logger is set to a lower log level, the message is not logged.
className
Type: SystemString
The name of the class issuing the log message.
methodName
Type: SystemString
The name of the method issuing the log message.
name
Type: SystemString
The name of the resource bundle within the IMSL C# Library.
key
Type: SystemString
The key for the message string in the resource bundle.
arg
Type: SystemObject
An Object array of parameter values.
Remarks
The output of a successful log entry is of the form "ClassName: formatted message"
See Also