Log a message.

Namespace: Imsl
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public void Log(
	Logger..::.Level logLevel,
	string className,
	string methodName,
	string message
)
Visual Basic (Declaration)
Public Sub Log ( _
	logLevel As Logger..::.Level, _
	className As String, _
	methodName As String, _
	message As String _
)
Visual C++
public:
void Log(
	Logger..::.Level logLevel, 
	String^ className, 
	String^ methodName, 
	String^ message
)

Parameters

logLevel
Type: Imsl..::.Logger..::.Level
The Logger.Level of the message. If the logger is set to a lower log level, the message is not logged.
className
Type: System..::.String
The name of the class issuing the log message.
methodName
Type: System..::.String
The name of the method issuing the log message.
message
Type: System..::.String
The string message to log.

Remarks

The output of a successful log entry is of the form "ClassName: message"

See Also