Skip to content

Commit dec5b87

Browse files
authored
Enable more collectors + backtrace
1 parent 9c232e1 commit dec5b87

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

config/debugbar.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -92,17 +92,17 @@
9292
'db' => true, // Show database (PDO) queries and bindings
9393
'views' => true, // Views with their data
9494
'route' => true, // Current route information
95+
'auth' => true, // Display Laravel authentication status
96+
'gate' => true, // Display Laravel Gate checks
97+
'session' => true, // Display session data
98+
'symfony_request' => true, // Only one can be enabled..
99+
'mail' => true, // Catch mail messages
95100
'laravel' => false, // Laravel version and environment
96101
'events' => false, // All events fired
97102
'default_request' => false, // Regular or special Symfony request logger
98-
'symfony_request' => true, // Only one can be enabled..
99-
'mail' => true, // Catch mail messages
100103
'logs' => false, // Add the latest log messages
101104
'files' => false, // Show the included files
102105
'config' => false, // Display config settings
103-
'auth' => false, // Display Laravel authentication status
104-
'gate' => false, // Display Laravel Gate checks
105-
'session' => true, // Display session data
106106
],
107107

108108
/*
@@ -116,13 +116,13 @@
116116

117117
'options' => [
118118
'auth' => [
119-
'show_name' => false, // Also show the users name/email in the debugbar
119+
'show_name' => true, // Also show the users name/email in the debugbar
120120
],
121121
'db' => [
122122
'with_params' => true, // Render SQL with the parameters substituted
123+
'backtrace' => true, // Use a backtrace to find the origin of the query in your files.
123124
'timeline' => false, // Add the queries to the timeline
124-
'backtrace' => false, // EXPERIMENTAL: Use a backtrace to find the origin of the query in your files.
125-
'explain' => [ // EXPERIMENTAL: Show EXPLAIN output on queries
125+
'explain' => [ // Show EXPLAIN output on queries
126126
'enabled' => false,
127127
'types' => ['SELECT'], // ['SELECT', 'INSERT', 'UPDATE', 'DELETE']; for MySQL 5.6.3+
128128
],

0 commit comments

Comments
 (0)