DataSource.NET
Log Method (level, category, message, messageParameters)
NamespacesCaplin.LoggingConsoleLoggerLog(LogLevels, String, String, array<Object>[]()[])
Logs a single message with supplied parameter values substituted into it.
Declaration Syntax
C#Visual BasicVisual C++
public void Log(
	LogLevels level,
	string category,
	string message,
	params Object[] messageParameters
)
Public Sub Log ( _
	level As LogLevels, _
	category As String, _
	message As String, _
	ParamArray messageParameters As Object() _
)
public:
virtual void Log(
	LogLevels level, 
	String^ category, 
	String^ message, 
	... array<Object^>^ messageParameters
) sealed
Parameters
level (LogLevels)
The logging level, indicating the severity of the message to be logged.
category (String)
The log category. This identifies the type of message being logged or the component from which the message originates.
message (String)
The message to be logged.
messageParameters (array< Object >[]()[])
One or more message parameter values that are to be substituted into message.
Remarks
The message can contain C# format specifiers that correspond to the message parameters. The method should substitute the message parameters into the supplied message (using Format(String, array<Object>[]()[])), to produce a readable message that is then logged.

Assembly: DataSource.NET (Module: DataSource.NET) Version: 6.0.12.814 (6.0.12.0814)