mv / error-log-bundle
Bundle log app errors in db
Installs: 94
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:bundle
Requires
- doctrine/doctrine-bundle: >=1.2
- symfony/symfony: >=2.7, <4.0
This package is auto-updated.
Last update: 2024-12-29 04:53:35 UTC
README
Bundle for Symfony2 >=2.8 and Symfony 3 that log app errors in db. (Symfony <= 2.7, see 1.x) This doesn't log HTTP exceptions and Access denied exceptions. This was made only for bug tracking. You will have trace and same precisions than dev mode in your log.
INSTALLATION with COMPOSER
php composer.phar require mv/error-log-bundle:"2.0"
###1) Add to your AppKernel.php
new Mv\ErrorLogBundle\MvErrorLogBundle(),
###2) Add to config.yml
imports:
- { resource: "@MvErrorLogBundle/Resources/config/config.yml" }
Be carrefull, may be you have already the "imports" key
###3) Update Database
ex:
app/console doctrine:schema:update
or to have dump sql:
app/console doctrine:schema:update --dump-sql
###4) Ready to log app errors
Your app errors are logged in table mv_error_log
Enjoy...
To be continued