You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
>Note: Use the DebugBar only in development. Do not use Debugbar on public websites, as it will leak information from stored requests (by design). It can also slow the application down (because it has to gather data). So when experiencing slowness, try disabling some of the collectors.
17
+
###Note: Use the DebugBar only in development. Do not use Debugbar on publicly accessible websites, as it will leak information from stored requests (by design). It can also slow the application down (because it has to gather data). So when experiencing slowness, try disabling some of the collectors.
18
18
19
19
This package includes some custom collectors:
20
20
- QueryCollector: Show all queries, including binding + timing
@@ -183,6 +183,12 @@ You can enable or disable the debugbar during run time.
183
183
184
184
NB. Once enabled, the collectors are added (and could produce extra overhead), so if you want to use the debugbar in production, disable in the config and only enable when needed.
185
185
186
+
## Storage
187
+
188
+
Debugbar remembers previous requests, which you can view using the Browse button on the right. This will only work if you enable `debugbar.storage.open` in the config.
189
+
Make sure you only do this on local development, because otherwise other people will be able to view previous requests.
190
+
In general, Debugbar should only be used locally or at least restricted by IP.
191
+
It's possible to pass a callback, which will receive the Request object, so you can determine access to the OpenHandler storage.
0 commit comments