Skip to content

Commit

Permalink
Change views behavior and add note
Browse files Browse the repository at this point in the history
Fixes barryvdh#67
Was causing more problems..
  • Loading branch information
barryvdh committed Jan 12, 2014
1 parent e564177 commit 2f9ef53
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@ It is configured to display Redirects and Ajax Requests. (Shown in a dropdown)

![Screenshot](http://i.imgur.com/GVc6C9g.png)

This includes some custom collectors:
Note: Use the DebugBar only in development. It can slow the application down (because it has to gather data). So when experiencing slowness, try disabling some of the collectors.

This package includes some custom collectors:
- RouteCollector: Show information about the current Route.
- ViewCollector: Show the currently loaded views an it's data.
- ViewCollector: Show the currently loaded views. (Optionally: display the shared data)
- EventsCollector: Show all events
- LaravelCollector: Show the Laravel version and Environment. (disabled by default)
- SymfonyRequestCollector: replaces the RequestCollector with more information about the request/response
Expand Down
2 changes: 1 addition & 1 deletion src/config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
'full_log' => false
),
'views' => array(
'data' => true,
'data' => false, //Note: Can slow down the application, because the data can be quite large..
),
'route' => array(
'label' => true // show complete route on bar
Expand Down

0 comments on commit 2f9ef53

Please sign in to comment.