DiagnosticsLog method (WinStudio scripts)
Applies To
IWSApplication interface
Definition
Creates an entry in the diagnostics log file.
Syntax
Application.DiagnosticsLog( string )
Part | Description |
string | Required. The text to be entered in the log. |
Example
Sub Main ' Make an entry in the diagnostics log Application.DiagnosticsLog( "This is the actual log entry text." ) End Sub