TApplication_Event_Logger
What: class
Ancestor: TBase_Delphi_Object
File: _AEL
Layer: 1
Platforms: C++, C#, Javascript, Pascal (Object), PHP, Python
This abstract base class defines a means of logging information. The class has the following methods:
Log_Event
void Log_Event( const string S )
procedure Log_Event( const S : string )
Logs an event with the text of the passed string.
Trace_Enter
void Trace_Enter( const string S )
procedure Trace_Enter( const S : string )
Logs the entering of a routine. The routine name is passed.
Trace_Exit
void Trace_Exit( const string S )
procedure Trace_Exit( const S : string )
Logs the exiting of a routine. The routine name is passed.