Suspends default logging of test results by ATEasy.
[ bState = ] SetLogOff ( )
The SetLogOff procedure syntax has the following parts:
Name |
Type |
Description |
bState |
Bool |
Log state before calling the function |
bState can have one of the following values:
Value |
Description |
True |
Log state was On. |
False * |
Log state was Off. |
ATEasy automatically logs test results as each Test generates output to the Log window. This automatic result logging may be suspended using this subroutine and may be resumed later using the SetLogOn subroutine.
If the test-log format provided by ATEasy is different from the one required by your application, you may use this subroutine to suspend the automatic test-log and create a custom format.
The following example empties the log window:
SetLogOff( )
ClearLog( )