public void LogMessage(
string Identifier,
string Message
)Public Sub LogMessage (
Identifier As String,
Message As String
)public:
virtual void LogMessage(
String^ Identifier,
String^ Message
) sealedUse this for straightforward logging requirements. Writes all information in one command.
Will create a LOGISSUE message in the log if called before a line started by LogStart has been closed with LogFinish. Possible reasons for this are exceptions causing the normal flow of code to be bypassed or logic errors.
This overload is not available through COM, please use "LogMessage(ByVal Identifier As String, ByVal Message As String, ByVal HexDump As Boolean)" with HexDump set False to achieve this effect.