<< Prev        Next >>

ID : 391

SysLog.Ctrl.Start

Function

To start control log recording.

Syntax

SysLog.Ctrl.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.Ctrl.Stop), or by the combination of this command and the parameter that specifies the logging-end timing.
If CLEARLOG command (SysLog.Ctrl.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.

Attention

Example

'!TITLE "Srart Control Log Recording"
' After initializing data of control log, start recording and stop
Sub Sample_SysLogCtrlStart

  ' Initialize data of control log
  SysLog.Ctrl.Clear

  ' Start control log recording
  SysLog.Ctrl.Start

  Move P, Dev( CurPos, P( 50, 100, 150, 0, 0, 0, -1 ) )

  Move L, Dev( CurPos, P( -100, 150, -100, 0, 0, 0, -1 ) )

  ' Stop control log recording
  SysLog.Ctrl.Stop

End Sub

ID : 391

<< Prev        Next >>