From 30d932e2e0bdcf4b72064569e84ac36accad8764 Mon Sep 17 00:00:00 2001 From: Marcus Moore Date: Mon, 26 Jan 2026 14:30:03 -0800 Subject: [PATCH] Re-enable exception collector --- config/debugbar.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/debugbar.php b/config/debugbar.php index d2902eb134..60a356b1e3 100644 --- a/config/debugbar.php +++ b/config/debugbar.php @@ -38,7 +38,7 @@ return [ 'messages' => env('DEBUGBAR_COLLECTORS_MESSAGES', true), // Messages 'time' => env('DEBUGBAR_COLLECTORS_TIME', true), // Time Datalogger 'memory' => env('DEBUGBAR_COLLECTORS_MEMORY', true), // Memory usage - // 'exceptions' => env('DEBUGBAR_COLLECTORS_EXCEPTIONS', true), // Exception displayer + 'exceptions' => env('DEBUGBAR_COLLECTORS_EXCEPTIONS', true), // Exception displayer 'log' => env('DEBUGBAR_COLLECTORS_LOG', true), // Logs from Monolog (merged in messages if enabled) 'db' => env('DEBUGBAR_COLLECTORS_DB', true), // Show database (PDO) queries and bindings 'views' => env('DEBUGBAR_COLLECTORS_VIEWS', true), // Views with their data