From dce549cc5c209825cd4ab901e4f3b977023daf0a Mon Sep 17 00:00:00 2001 From: snipe Date: Thu, 2 Jun 2016 02:49:17 -0700 Subject: [PATCH] Updated debugbar prefs --- config/debugbar.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config/debugbar.php b/config/debugbar.php index bae876c70c..18ebfaf3cf 100644 --- a/config/debugbar.php +++ b/config/debugbar.php @@ -99,8 +99,8 @@ return array( 'logs' => false, // Add the latest log messages 'files' => false, // Show the included files 'config' => false, // Display config settings - 'auth' => false, // Display Laravel authentication status - 'gate' => false, // Display Laravel Gate checks + 'auth' => true, // Display Laravel authentication status + 'gate' => true, // Display Laravel Gate checks 'session' => true, // Display session data ), @@ -119,8 +119,8 @@ return array( ), 'db' => array( 'with_params' => true, // Render SQL with the parameters substituted - 'timeline' => false, // Add the queries to the timeline - 'backtrace' => false, // EXPERIMENTAL: Use a backtrace to find the origin of the query in your files. + 'timeline' => true, // Add the queries to the timeline + 'backtrace' => true, // EXPERIMENTAL: Use a backtrace to find the origin of the query in your files. 'explain' => array( // EXPERIMENTAL: Show EXPLAIN output on queries 'enabled' => false, 'types' => array('SELECT'), // array('SELECT', 'INSERT', 'UPDATE', 'DELETE'); for MySQL 5.6.3+