bohacpetr / nette-sentry-legacy
Legacy Nette Sentry logger library
Requires
- php: >=7.0
- nette/nette: ^2.2.0
- sentry/sentry: 1.11.0
Requires (Dev)
- ninjify/nunjuck: ^0.3
- squizlabs/php_codesniffer: ~3.5
This package is auto-updated.
Last update: 2025-03-18 23:02:52 UTC
README
This is fork of rootpd/nette-sentry
link supporting legacy Nette 2.2
, Sentry 1.11
and PHP 7.0+
. Just in case you end up maintaining technical debt.
Tracy logger extension capable of logging messages and errors to Sentry.
Note: If you have debug mode enabled in your application, logger will only send \Tracy\Debugger::log()
messages to sentry. Any exception ending with Tracy's blue screen is not going to be logged as you can see the exception details directly.
Installation
Install package via Composer:
composer require bohacpetr/nette-sentry-legacy
Configuration
Enable and configure the extension in Nette config file:
extensions: # ... sentry: Rootpd\NetteSentry\DI\SentryExtension sentry: dsn: https://123abc123abc123abc123abc123abc12@sentry.io/3 # required environment: production # optional, defaults to "local" user_fields: # optional, defaults to empty array; Nette's identity ID is being sent automatically - email session_sections: # optional, list of session sections to track - mySection priority_mapping: mypriority: warning
Priority-Severity mapping
Sometimes you might need to use custom priority when logging the error in Nette:
\Tracy\Debugger::log('foo', 'mypriority');
Sentry only allows strict set of severities. By default any message with unknown (non-standard) severity is not being logged.
You can map your custom priority to Sentry's severity in config by using priority_mapping
as shown in the example.
The allowed set of Sentry severities can be checked in Sentry's PHP repository.
Usage
Once enabled as extension, you can continue to throw exceptions without any change. To log message please use \Tracy\Debugger::log()
method.