Logs the message.

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

Syntax

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

Parameters

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

Implements

IAppServerLog..::.LogMsg(EntryPtMsgType, Int32, String)

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