maximebf / php-debugbar

Debug bar for PHP
phpdebugbar.com
MIT License
4.2k stars 401 forks source link

Remove trace args in Exceptions #691

Closed barryvdh closed 3 weeks ago

barryvdh commented 3 weeks ago

Currently when dumping Exceptions, this will contain the argument object, which can be quite heavy and can contain sensitive information.

This replaces the arguments with just the object classname, which will improve performance and reduce the size of the traces.

image