Unwritten - Independent logging library

UnwrittenLogfile.WriteLine Method (UnwrittenLoggingType, String, Object[])

Format and write the logging message into the logfile. If the internal filter is set to a higher UnwrittenLogfile.UnwrittenLoggingType value than set by the type parameter, the logging mesasage will be filtered and not printed into the logfile. A return will be appended after printing the logging message.

[Visual Basic]
Overloads Public Sub WriteLine( _
   ByVal type As UnwrittenLoggingType, _
   ByVal szText As String, _
   ParamArray variableParameterList As Object() _
)
[C#]
public void WriteLine(
   UnwrittenLoggingType type,
   string szText,
   params object[] variableParameterList
);

Parameters

type
The type of the message. This parameter is used to filter undesirable messages before printing them into the logfile.
szText
The text to print into the logfile.
variableParameterList
A variable list of parameters to format the szText parameter.

See Also

UnwrittenLogfile Class | FuturesNet.IO.Unwritten Namespace | UnwrittenLogfile.WriteLine Overload List