Logs the message.

Namespace:  GrassValley.Mseries.AppServerLog
Assembly:  GrassValley.Mseries.AppServerLog (in GrassValley.Mseries.AppServerLog.dll) Version: 1.0.0.0

Syntax

C#
void LogMsg(
	EntryPtMsgType msgType,
	int duration,
	string msg
)
Visual Basic (Declaration)
Sub LogMsg ( _
	msgType As EntryPtMsgType, _
	duration As Integer, _
	msg As String _
)
Visual C++
void LogMsg(
	EntryPtMsgType msgType, 
	int duration, 
	String^ msg
)

Parameters

msgType
Type: EntryPtMsgType
message type.
duration
Type: System..::.Int32
duration.
msg
Type: System..::.String
message.

Remarks

This function creates a new message record in the log database. The record is timestamped when LogMsg is called, rather than when it is actually written to the database, since this is an asynchronous process.

See Also