Tracy BlueScreen panel for Exception::__debugInfo
Original BlueScreen
Better (with panel) BlueScreen
- Tracy >=2.3.0 (2.3.x support will be removed on 31 Jan 2017)
- PHP >=5.5.0 (5.5.x support will be removed on 10 Jul 2016)
composer require nella/tracy-debug-info
\Nella\Tracy\DebugInfoPanel::register(\Tracy\Debugger::getBlueScreen());
Your exception must implement Nella\Tracy\DebugInfoException
interface. There is a helper trait Nella\Tracy\DebugInfoExceptionTrait
with implemented __debugInfo
method.
class YourException extends \Exception implements \Nella\Tracy\DebugInfoException
{
use \Nella\Tracy\DebugInfoExceptionTrait;
}
Tracy BlueScreen panel for Exception::__debugInfo is licensed under the MIT License - see the LICENSE file for details