threadsafelog Options property
Return to Introduction  Previous page  Next page
Applies to
acThreadSafeLog component.  

Declaration
type  
  TacThreadSafeLogOption = (putTickStamp, putTimeStamp, putThreadID);  
  TacThreadSafeLogOptions = set of TacThreadSafeLogOption;  
 
property Options: TacThreadSafeLogOptions;  

Description
The Options property specifies which dynamic values should be stored to the log file as prefix before each line of logged text.  
 
There is 3 possible options/values which can be automatically put to the prefix before each line:  
OptionDescription  
putTickStampputs the number of CPU ticks passed from the application startup;  
putTimeStampputs current date and time in format specified in the DateTimeFormat property;  
putThreadIDputs the identifier of the thread which called Log method.  
 
Alternatively, if you don't want to put standard values descibed in Options, you can use OnCustomPrefix event to specify your own prefix before each line of logged text.  

See also
DateTimeFormat property and OnCustomPrefix event.