sebwite / magento2-sentry
Magento 2.0 Logger for Sentry
Installs: 453
Dependents: 0
Suggesters: 0
Security: 0
Stars: 8
Watchers: 5
Forks: 7
Open Issues: 1
Type:magento2-module
Requires
- php: ~5.5.0|~5.6.0|~7.0
- magento/magento-composer-installer: *
- raven/raven: 0.9.*
This package is not auto-updated.
Last update: 2024-10-26 19:21:41 UTC
README
This extension will add the ability to log to Sentry. Default for the minimal logging level is DEBUG, this is set in the extensions di.xml.
Installation with composer
- Include the repository:
composer require sebwite/magento2-sentry
- Enable the extension:
php bin/magento --clear-static-content module:enable Sebwite_Sentry
- Upgrade db scheme:
php bin/magento setup:upgrade
- Clear cache
Installation without composer
- Download zip file of this extension
- Place all the files of the extension in your Magento 2 installation in the folder
app/code/Sebwite/Sentry
- Enable the extension:
php bin/magento --clear-static-content module:enable Sebwite_Sentry
- Upgrade db scheme:
php bin/magento setup:upgrade
- Clear cache
Configuration
- Add the variable 'raven_dns' to your app/etc/env.php file. Example:
'raven_dns' => 'https://****@sentry.domain.com/8',