├── CHANGELOG.md ├── README.md ├── composer.json ├── license.txt ├── modman ├── screenshot-configuration.png └── src └── app ├── code └── community │ └── SSE │ └── DebugErrors │ ├── Exception.php │ ├── Helper │ └── Data.php │ ├── Model │ ├── Errorhandler.php │ ├── Errorhandler │ │ ├── Exception │ │ │ ├── Log.php │ │ │ ├── Show.php │ │ │ └── Throw.php │ │ ├── Interface.php │ │ └── Warning.php │ ├── Observer.php │ └── System │ │ └── Config │ │ └── Handler.php │ └── etc │ ├── config.xml │ └── system.xml ├── design ├── adminhtml │ └── default │ │ └── default │ │ └── template │ │ └── sse_debugerrors │ │ └── exception.phtml └── frontend │ └── base │ └── default │ └── template │ └── sse_debugerrors │ └── exception.phtml └── etc └── modules └── SSE_DebugErrors.xml /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmengler/DebugErrors/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmengler/DebugErrors/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmengler/DebugErrors/HEAD/composer.json -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmengler/DebugErrors/HEAD/license.txt -------------------------------------------------------------------------------- /modman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmengler/DebugErrors/HEAD/modman -------------------------------------------------------------------------------- /screenshot-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmengler/DebugErrors/HEAD/screenshot-configuration.png -------------------------------------------------------------------------------- /src/app/code/community/SSE/DebugErrors/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmengler/DebugErrors/HEAD/src/app/code/community/SSE/DebugErrors/Exception.php -------------------------------------------------------------------------------- /src/app/code/community/SSE/DebugErrors/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmengler/DebugErrors/HEAD/src/app/code/community/SSE/DebugErrors/Helper/Data.php -------------------------------------------------------------------------------- /src/app/code/community/SSE/DebugErrors/Model/Errorhandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmengler/DebugErrors/HEAD/src/app/code/community/SSE/DebugErrors/Model/Errorhandler.php -------------------------------------------------------------------------------- /src/app/code/community/SSE/DebugErrors/Model/Errorhandler/Exception/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmengler/DebugErrors/HEAD/src/app/code/community/SSE/DebugErrors/Model/Errorhandler/Exception/Log.php -------------------------------------------------------------------------------- /src/app/code/community/SSE/DebugErrors/Model/Errorhandler/Exception/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmengler/DebugErrors/HEAD/src/app/code/community/SSE/DebugErrors/Model/Errorhandler/Exception/Show.php -------------------------------------------------------------------------------- /src/app/code/community/SSE/DebugErrors/Model/Errorhandler/Exception/Throw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmengler/DebugErrors/HEAD/src/app/code/community/SSE/DebugErrors/Model/Errorhandler/Exception/Throw.php -------------------------------------------------------------------------------- /src/app/code/community/SSE/DebugErrors/Model/Errorhandler/Interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmengler/DebugErrors/HEAD/src/app/code/community/SSE/DebugErrors/Model/Errorhandler/Interface.php -------------------------------------------------------------------------------- /src/app/code/community/SSE/DebugErrors/Model/Errorhandler/Warning.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmengler/DebugErrors/HEAD/src/app/code/community/SSE/DebugErrors/Model/Errorhandler/Warning.php -------------------------------------------------------------------------------- /src/app/code/community/SSE/DebugErrors/Model/Observer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmengler/DebugErrors/HEAD/src/app/code/community/SSE/DebugErrors/Model/Observer.php -------------------------------------------------------------------------------- /src/app/code/community/SSE/DebugErrors/Model/System/Config/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmengler/DebugErrors/HEAD/src/app/code/community/SSE/DebugErrors/Model/System/Config/Handler.php -------------------------------------------------------------------------------- /src/app/code/community/SSE/DebugErrors/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmengler/DebugErrors/HEAD/src/app/code/community/SSE/DebugErrors/etc/config.xml -------------------------------------------------------------------------------- /src/app/code/community/SSE/DebugErrors/etc/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmengler/DebugErrors/HEAD/src/app/code/community/SSE/DebugErrors/etc/system.xml -------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/sse_debugerrors/exception.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmengler/DebugErrors/HEAD/src/app/design/adminhtml/default/default/template/sse_debugerrors/exception.phtml -------------------------------------------------------------------------------- /src/app/design/frontend/base/default/template/sse_debugerrors/exception.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmengler/DebugErrors/HEAD/src/app/design/frontend/base/default/template/sse_debugerrors/exception.phtml -------------------------------------------------------------------------------- /src/app/etc/modules/SSE_DebugErrors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schmengler/DebugErrors/HEAD/src/app/etc/modules/SSE_DebugErrors.xml --------------------------------------------------------------------------------