Logs a message to the Event Log.
Syntax

[C#]

static void Log(string inText);

[Visual Basic]

Shared Sub Log(inText As String)
Params
Name Description
inText The message that should be logged.
Notes

Places a message into the Windows Application Event Log. Note that the source will be "ImageGlue".

Example

[C#]

XSettings.Log("An event occurred!");


[Visual Basic]

XSettings.Log("An event occurred!")