You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current version of ZendSentry for ZF2 is `2.3.0`. It supports Zend Framework >= 2.5.3. For older versions see the legacy branch and tags in the `1.*` series. For ZF3 compatible versions, please install releases in the `3.*` branch.
7
+
The current version of ZendSentry for ZF2 is `2.3.1`. It supports Zend Framework >= 2.5.3. For older versions see the legacy branch and tags in the `1.*` series. For ZF3 compatible versions, please install releases in the `3.*` branch.
8
8
9
9
#Latest Changes
10
10
- Possibility to add extra context to simple logs
@@ -51,7 +51,7 @@ In your project's `composer.json` use:
51
51
52
52
{
53
53
"require": {
54
-
"cloud-solutions/zend-sentry": "2.3.0"
54
+
"cloud-solutions/zend-sentry": "2.3.1"
55
55
}
56
56
57
57
Run `php composer.phar update` to download it into your vendor folder and setup autoloading.
@@ -116,6 +116,7 @@ When using the `log` event, you can optionally pass tags like this:
116
116
'priority' => \Zend\Log\Logger::INFO,
117
117
'message' => 'I am a message with a language tag',
118
118
'tags' => array('language' => 'en'),
119
+
'extra' => array('email' => 'test@test.com'),
119
120
));
120
121
121
122
If using the `logException` event manually, you can also pass along tags:
0 commit comments