Chat now
Getting Started with Ease
Add the Logify Client to Your Project
  1. Copy the Logify folder to your PHP project.
  2. Use the code below to include the LoadHelper.php file to the PHP script you use to call the Logify API. require_once('/Logify/LoadHelper.php');
  3. Register the library autoloader by executing the following code: spl_autoload_register(array("DevExpress\LoadHelper", "LoadModule"));
Send Reports to Logify
$client = LogifyAlertClient::get_instance();
$client->apiKey = 'SPECIFY_YOUR_API_KEY_HERE';
$client-> start_exceptions_handling();
That’s it! Your application is ready to report all unexpected crashes to DevExpress Logify.
Refer to our documentation for more information.