The current test log output ALog.
ALog Public
The Log is used by the Print statement and by ATEasy for test results output.
When running the application within the ATEasy environment the Log variable is set to the value of TestLog - the ATEasy IDE built-in Log window Test tab log control. When running the application in standalone mode (EXE) the Log variable is initially set to Nothing and can be set by the application to a form log control.
If the Print statement is used and the Log is set to Nothing, no output will be generated and the Print statement will be ignored.
When running multiple UUTs the Log variable holds the current UUT log. Each execution thread have its own Log variable.
The following example sets the Log variable to route the test log output to a form log control:
Procedure OnInit() : void public
{
Load m_frmMain, FALSE
Log=m_frmMain.logTestResults
print "Log is started "; SDate();" "; STime()
}