From a73b7cc55013af9598e26ccbd901ddb44dc7f116 Mon Sep 17 00:00:00 2001 From: magdev Date: Thu, 22 Jan 2026 00:05:06 +0100 Subject: [PATCH] Debug: simple test page --- src/Admin/AnalyticsController.php | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/Admin/AnalyticsController.php b/src/Admin/AnalyticsController.php index 4b2231e..bff2ab1 100644 --- a/src/Admin/AnalyticsController.php +++ b/src/Admin/AnalyticsController.php @@ -301,14 +301,7 @@ class AnalyticsController */ public function renderStatisticsPage(): void { - try { - $stats = $this->licenseManager->getStatistics(); - $this->renderStatisticsPageFallback($stats); - } catch (\Throwable $e) { - echo '

License Statistics - Error

'; - echo '

Error: ' . esc_html($e->getMessage()) . '

'; - echo '

File: ' . esc_html($e->getFile()) . ':' . esc_html($e->getLine()) . '

'; - } + echo '

License Statistics - DEBUG TEST

If you see this, the callback is working.

'; } /**