Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/diegograssato/magento2-sentry
https://github.com/diegograssato/magento2-sentry
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/diegograssato/magento2-sentry
- Owner: diegograssato
- Created: 2018-09-28T01:40:46.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-05T19:40:04.000Z (about 6 years ago)
- Last Synced: 2024-04-30T15:23:45.203Z (7 months ago)
- Language: PHP
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Magento 2.2 Sentry Logger
This extension will add the ability to log to [Sentry](https://github.com/getsentry/). Default for the minimal logging level is DEBUG, this is set in the extensions di.xml.
Instalation
------------To install is quite simple, add the **composer.json:**
```
"diegograssato/magento2-sentry": "*"
```Next step is to update the composer
```
composer self-update
```
or`composer require diegograssato/magento2-sentry`
* Enable the extension: `php bin/magento --clear-static-content module:enable DTuX_Sentry`
* Upgrade db scheme: `php bin/magento setup:upgrade`
* Clear cache `php bin/magento c:f`## Configuration
* Add the variable 'raven_dns' to your app/etc/env.php file. Example:```
'raven_dns' => 'https://****@sentry.domain.com/8',
```