Skip to content

Commit c0667ea

Browse files
authored
Fix default for capturing dd/dump (#1783)
1 parent 2d6079d commit c0667ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/LaravelDebugbar.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ public function boot()
196196
$this['messages']->collectFileTrace(true);
197197
}
198198

199-
if ($config->get('debugbar.options.messages.capture_dumps', true)) {
199+
if ($config->get('debugbar.options.messages.capture_dumps', false)) {
200200
$originalHandler = \Symfony\Component\VarDumper\VarDumper::setHandler(function ($var) use (&$originalHandler) {
201201
if ($originalHandler) {
202202
$originalHandler($var);

0 commit comments

Comments
 (0)