|
IsEurekaLogInstalled function |
|
|
EurekaLog includes a function named IsEurekaLogInstalled, that enables you to check if EurekaLog is installed in your application.
Syntax of this function is as follows:
function IsEurekaLogInstalled: Boolean;
When EurekaLog is active the Result is True, False otherwise (when the ExceptionLog.pas unit is included in your project but you have disabled EurekaLog from the "Project/Exceptions Log Options..." IDE menù).
Example:
uses ExceptionLog; // The required unit...
begin ... ok := IsEurekaLogInstalled; ... end; |