-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Markus
authored
Mar 23, 2017
1 parent
a67eec4
commit ef4aaec
Showing
1 changed file
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ Scrutizier analysis: [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/c | |
|
||
ZendSentry is released under the New BSD License. | ||
|
||
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. | ||
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. | ||
|
||
#Latest Changes | ||
- Possibility to add extra context to simple logs | ||
|
@@ -51,7 +51,7 @@ In your project's `composer.json` use: | |
|
||
{ | ||
"require": { | ||
"cloud-solutions/zend-sentry": "2.3.0" | ||
"cloud-solutions/zend-sentry": "2.3.1" | ||
} | ||
|
||
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: | |
'priority' => \Zend\Log\Logger::INFO, | ||
'message' => 'I am a message with a language tag', | ||
'tags' => array('language' => 'en'), | ||
'extra' => array('email' => '[email protected]'), | ||
)); | ||
|
||
If using the `logException` event manually, you can also pass along tags: | ||
|