Function EN Version 3.00

@DebugFollowVar

Debugging List Misc Text

Syntax

@DebugFollowVar(VAR1[;VAR2[;...[;VAR99]]]);

Description

Defines variables that should be documented when used.
It must with the KEYWORD DEBUG the mode "FOLLOW" must be activated so that the list defined with @DebugFollowVar is defined must also be taken into account.
@DebugFollowVar the variables to be tracked are passed directly.

To delete the list, @DebugFollowVar called without parameters.

The DEBUG mode is not automatically deleted.

Example:@DebugFollowVAR(VAR1)

DEBUG("FOLLOW");
@DebugFollowVar(XYZ);

Every update of the variable XYZ is now reported at the APILOG.

Example:@DebugFollowFun(VAR1;VAR2)

DEBUG("FOLLOW");
@DebugFollowFun(XYZ;TEST);

Every update of the variables XYZ and TEST is now reported at the APILOG.

Note : This text was machine-translated and may contain inaccuracies.