ID : 395
SysLog.Trace.Stop
Function
To finish trace log recording.
Syntax
SysLog.Trace.Stop
Description
This command stops recording the log. The recording in the ring buffer ends at this command.
You can obtain the log data that ranges from the start-timing specified by the parameter to this command, or that ranges from the STARTLOG command (SysLog.Trace.Start) to this command.
For details, refer to "Recording by Program Commands" in the "Logging" under the FUNCTION GUIDE.
Related Terms
SysLog.Trace.Start, 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 : 395