ID : 394
SysLog.Trace.Start
Function
To start trace log recording.
Syntax
SysLog.Trace.Start
Description
Executing this command will specify the start timing of the log data that you can obtain.
The range of log data you can obtian is specified by the combination of this command and STOPLOG command (SysLog.Trace.Stop), or by the combination of this command and the parameter that specifies the logging-end timing.
If CLEARLOG command (SysLog.Trace.Clear) has not been executed, the program automatically executes CLEARLOG process and then starts obtaining the log data.
For details, refer to "Recording by Program Commands" in the "Logging" under the FUNCTION GUIDE.
Related Terms
SysLog.Trace.Stop, SysLog.Trace.Clear, Logging, TP Trace logging screen
Attention
- See "Displaying the Trace Log" in "TEACH PENDANT OPERATION GUIDE" for about how to check the trace log with a teach pendant.
- See "Acquisition of Log Data" in "WINCAPSIII GUIDE" for about how to export controller's log data to WINCAPSIII.
See "Displaying and Reading Project List" in "TEACH PENDANT OPERATION GUIDE" for about how to export controller's log data to a USB.
Example
Sub Main
SysLog.Trace.Clear
SysLog.Trace.Start
TakeArm
Motor On
ExtSpeed 50
Speed 100
Move P, P1
Move P, P2
Move P, P3
SysLog.Trace.Stop
End Sub
ID : 394