SET EVENTTRACKING

From Lianjapedia
Jump to: navigation, search

Purpose

Enable or disable event tracking

Syntax

SET EVENTTRACKING ON | OFF | (<expL>)

See Also

DEBUGOUT, ON ERROR, SET DEBUGOUT

Description

The SET EVENTTRACKING command provides the ability to enable or disable event tracking. With SET EVENTTRACKING ON, event calls are logged to the debug_client.txt file in the Lianja debug sub-directory. Event tracking is disabled if SET EVENTTRACKING is OFF, the default.

Example

set eventtracking on
// Load App

debug_client.txt contents:

File ../../rco_stdevents.h at line 321 object=null event=MOUSELEAVE
File ../../rco_stdevents.h at line 180 object=null event=LOSTFOCUS
File ../../rco_stdevents.h at line 566 object=null event=ACTIVATE
File ../../rco_stdevents.h at line 566 object=null event=ACTIVATE
File ../../rco_stdevents.h at line 303 object=null event=MOUSEENTER
File ../../rco_stdevents.h at line 321 object=null event=MOUSELEAVE
...